Category Archives: Web Services

ASP.Net WebServices: Enabling or Disabling POST, GET, and Documentation Requests

It is relatively easy to control access to the various HTTP request types (protocols) for your ASP.Net WebService. Add something like this to the system.web section of your web.config: <webServices> <protocols> <add name="HttpSoap"/> <add name="HttpGet"/> <!– Because this web service … Continue reading

Posted in C#, Web Services, WinForms | Leave a comment