Enabling the test form for an ASP.NET web service

If you have created an ASP.NET web service you may find that the test form is missing as shown below:

Screenshot: Web service test form missing

To enable the test form you will need to add the following lines to the ‘System.Web’ section of your web service’s Web.Config file:

<webServices>
  <protocols>
    <add name="HttpPost" />
    <add name="HttpGet" />
  </protocols>
</webServices>

Once you have added these lines and saved the ‘Web.Config’ file, the test form should be visible when you reload your web service.

Comments are closed.