I\'m migrating an existing service from HTTP (Dev/UAT) to HTTPS (Production), and I\'m having trouble with the configuration. Here is the system.serviceModel section of my
Thanks to Johann Blais for the answer, I've found out that you would need to include the fully qualified name for the class that defines the service contract.
For example if your service is
namespace MyCompany.WcfService
{
[ServiceContract(Namespace="http://xsd.mycompany.com/mcy/1_0_0")]
public interface IService
{
[OperationContract(IsOneWay = false)]
void DoStuff()
}
public class Service : IService
{
void DoStuff()
{
}
}
}
The corresponding service definition in your web.config would be
...