Reputation: 75103
As a contrast with a asmx file, how can I get in the visual service page that shows the available methods on the service?
Versus
Upvotes: 7
Views: 9248
Reputation: 22655
WCF does not have the list of operations page. The information is available by looking at the raw WSDL http://soweb7.adwiza.com/remote/person.svc?WSDL.
If you want a friendlier way to see that information as well as the ability to invoke the service (which the old ASMX page gave for simple types) then you can use the WCF Test Client (WcfTestClient.exe).
It will show you all of that information:
Upvotes: 11