404 – Error: Getting Empty response from WCF Service is giving Error in Azure
From Azure it is giving, when I try to post to: https://wcf/service.svc/json/DoAction it comes back with an empty response. Below is the webconfig <system.serviceModel> <serviceHostingEnvironment multipleSiteBindingsEnabled="true" /> <services> <service name="SampleService" behaviorConfiguration="ChallengeBehavior"> <endpoint address="" binding="wsHttpBinding" bindingConfiguration="ChallengeMessageEncoding" contract="IService123" behaviorConfiguration="SoapServiceBehavior" /> <endpoint address="/json" binding="webHttpBinding" bindingConfigu**strong text**ration="RestServiceMessageEncoding" contract="ISampleService" behaviorConfiguration="RestServiceBehavior" /> </service> </services> <behaviors> <endpointBehaviors> <behavior name="RestServiceBehavior"> <webHttp defaultOutgoingResponseFormat="Json" automaticFormatSelectionEnabled="true"… Read More 404 – Error: Getting Empty response from WCF Service is giving Error in Azure