Friday, April 25, 2008

Web Service: Enabling Web Service Test Form for Remote Client

To enable the Web Service Test Form for remote machine, edit following in the Web.Config:

<system.web>
...
...
...
    <webServices>
        <protocols>
            <add name="HttpPost" />
            <add name="HttpGet" />
        </protocols> 
    </webServices>
...
...
...
<system.web>


This should be enabled for debugging purposes only. For production, this should be disabled (by removing or commenting tags above).

No comments: