Hello,
I have created a wcf service (.net 3.5, it uses wsHttpBinding and hosts on IIS), and when i'm trying to hit the service from the browser i see standard help page 'you have created a service'. I don't want to see it. Instead of it i would like to see some custom page. I tried to use httpHelpPageUrl property, but with no luck. It just doesn't show the specified url.
This is a part of web.config:
<serviceMetadata httpGetEnabled="false"/>
<serviceDebug includeExceptionDetailInFaults="false" httpHelpPageEnabled="false" httpsHelpPageEnabled="false"/>
How could i replace this standard service help page with a custom one?
Thanks