Hi,
You can control the web service protocols through the <webservices> section
of the web.config file.
Here is an example :
<configuration>
<system.web>
<webServices>
<protocols>
<remove name="HttpSoap12"/>
<remove name="HttpPost"/>
<remove name="HttpGet"/>
</protocols>
</webServices>
....
Hope this will help,
Regards,
Pierre.
> Is there any way to make a webservice only work with SOAP? Also, is there a
> way to disable that generic ASP.NET created test page and just return the
> WSDL instead? thanks!