Add the following highlighted sections to the web.config file: ... <system.serviceModel> <serviceHostingEnvironment aspNetCompatibilityEnabled="true" minFreeMemoryPercentageToActivateService="1" /> <services> <service name="JDA.Intactix.IKB.Web.AuthenticationService" behaviorConfiguration="serviceBehavior"> <endpoint address="" behaviorConfiguration="restfulBehavior" binding="webHttpBinding" bindingConfiguration="basicHttps" contract="JDA.Intactix.IKB.Web.IAuthenticationService" /> </service> </services> <bindings> <webHttpBinding> <binding name="basicHttps"> <security mode="Transport"> </security> </binding> <binding name="basicHttp"> <security mode="None" /> </binding> </webHttpBinding> </bindings> <behaviors> <endpointBehaviors> ... |