I\'ve searched for similar questions on SO and Google, but seems like it\'s not possible to hide or disable the standard WCF help page \"You have created a service\" when yo
To disable the page completely: on web.config, define the <serviceDebug/>
behavior inside a <serviceBehavior>
with the http[s]HelpPageEnabled
properties set to false.
<system.serviceModel>
<services>
<service name="MyNamespace.MyService" behaviorConfiguration="NoHelpPageBehavior">
<endpoint address="" binding="basicHttpBinding" contract="MyNamespace.IMyContract" />
</service>
</services>
<behaviors>
<serviceBehaviors>
<behavior name="NoHelpPageBehavior">
<serviceDebug httpHelpPageEnabled="false" httpsHelpPageEnabled="false"/>
</behavior>
</serviceBehaviors>
</behaviors>
</system.serviceModel>