Enabling HttpGet and HttpPost for web services
Barrington Haynes (6092 views)
Enabling HttpGet and HttpPost for web services
If your web application needs to accept incoming webservice method requests based on the '''GET''' and '''POST''' protocols then add the following lines to your ''web.config'' file.
#h#<configuration>
#h# <system.web>
#h# <webServices>
#h
|
EasyHTTP
Barrington Haynes (5105 views)
EasyHTTP
EasyHTTP is a simple class which exposes the HTTP functionality of .NET as a number of simpler methods.
#c#using System;
#c#using System.Data;
#c#using System.Configuration;
#c#using System.Web;
#c#using System.Web.Security;
#c#using System.Web.UI;
#c#using System.Web.UI.WebCo
|