2
votes

I have created a WCF web service with BasicHttpBinding. When I browse the .svc file, I get a link to WSDL definition and the "You have created a service. To test this service, you will need to create a client...":

WCF help page

ASMX help page displays more verbose info about supported operations:

ASMX help page

Is there a way to display information about individual WCF service operations automatically as for ASMX services?

1

1 Answers

0
votes
<endpointBehaviors>
   <behavior name="MyCostumBehavior">
      <webHttp helpEnabled="true"/>
   </behavior>
</endpointBehaviors>
<!-- ... -->
<services>
   <service behaviorConfiguration="MyCostumBehavior".... 

This configuration works for both SOAP and Rest WCF