I have a WCF service that is hosted in IIS 7.5. I have two servers, one for test and one for production.
The service works fine on test server, but on the production ser
Yes the issue is with publishing metadata. Just adding one more tips. You can also add service meta data using code, like this :
ServiceMetadataBehavior smb = new ServiceMetadataBehavior();
smb.HttpGetEnabled = true;
host.Description.Behaviors.Add(smb);
More details here : http://msdn.microsoft.com/en-us/library/aa738489%28v=vs.110%29.aspx