c# - WCF Exception: Could not find a base address that matches scheme http for the endpoint for one service -
i have more 1 rest service in same project, have given same configuration service, 1 service showing error, here sharing configuration set service not working.
<behaviors> <endpointbehaviors> <behavior name="devleadreportendbeh"> <webhttp /> </behavior> </endpointbehaviors> <servicebehaviors> <behavior name="devleadreportbeh"> <servicemetadata httpgetenabled="false" httpsgetenabled="true" /> <servicedebug includeexceptiondetailinfaults="true" /> </behavior> </servicebehaviors> </behaviors> <webhttpbinding> <binding name="webhttptransportsecurity"> <security mode="transport"> </security> </binding> </webhttpbinding> <services> <service name="devleadreport" behaviorconfiguration="devleadreportbeh"> <endpoint address="" behaviorconfiguration="devleadreportendbeh" bindingconfiguration="webhttptransportsecurity" binding="webhttpbinding" contract="developersleadreport" /> </service> </services> but same type configuration working rest of services, please help
Comments
Post a Comment