As mentioned in the blog post provided by Justin, you can restore the Wsdl help page by changing the DefaultWsdlHelpGenerator.aspx page, which can be found in C: \ Windows \ Microsoft.NET \ Framework \ v2.0.50727 \ CONFIG \
However, more can be done, but the blog only mentions changing this file and changing it where it can be found in the machine.config file. This restriction applies to all web services hosted on the server.
You can create a custom help page for individual web services.
To do this, you need to add a copy of the file mentioned above to the web service project, and then link this new file to the web.config file.
The configuration section to be added is shown below:
<configuration> <system.web> <webServices> <wsdlHelpGenerator href="MyCustomWsdlHelpGenerator.aspx"/> </webServices> </system.web> </configuration>
Go to asmx in the browser and you will see the specified help page, not the default.
source share