User-1548746331 posted
I need to know after which tag in web.config file i need to put the following blocks of code of a wcf rest service
<endpoint address="" binding="webHttpBinding"contract="Wcf_Test.IMyService"
behaviorConfiguration="httpEndpointBehavour">
<identity>
<dns value="localhost"/>
<Identity>
</endpoint>
and
<behaviors> <serviceBehaviors>
<behavior name="httpBehaviour"> <serviceMetadata httpGetEnabled="True"/>
<serviceDebug includeExceptionDetailInFaults="False"/>
</behavior></serviceBehaviors>
and
<endpointBehaviors>
<behavior name="httpEndpointBehavour">
<webHttp /> </behavior>
</endpointBehaviors>
I am new to WCF concept.
Thanks in advance
Regards,
RAJAN CRP