HttpSimpleClientProtocol Class
Represents the base class for communicating with an XML Web service using the simple HTTP-GET and HTTP-POST protocols bindings.
Assembly: System.Web.Services (in System.Web.Services.dll)
System.MarshalByRefObject
System.ComponentModel.Component
System.Web.Services.Protocols.WebClientProtocol
System.Web.Services.Protocols.HttpWebClientProtocol
System.Web.Services.Protocols.HttpSimpleClientProtocol
System.Web.Services.Protocols.HttpGetClientProtocol
System.Web.Services.Protocols.HttpPostClientProtocol
| Name | Description | |
|---|---|---|
![]() | HttpSimpleClientProtocol() | Initializes a new instance of the HttpSimpleClientProtocol class. |
| Name | Description | |
|---|---|---|
![]() | AllowAutoRedirect | Gets or sets whether the client automatically follows server redirects.(Inherited from HttpWebClientProtocol.) |
![]() | CanRaiseEvents | Gets a value indicating whether the component can raise an event.(Inherited from Component.) |
![]() | ClientCertificates | Gets the collection of client certificates.(Inherited from HttpWebClientProtocol.) |
![]() | ConnectionGroupName | Gets or sets the name of the connection group for the request.(Inherited from WebClientProtocol.) |
![]() | Container | Gets the IContainer that contains the Component.(Inherited from Component.) |
![]() | CookieContainer | Gets or sets the collection of cookies.(Inherited from HttpWebClientProtocol.) |
![]() | Credentials | Gets or sets security credentials for XML Web service client authentication.(Inherited from WebClientProtocol.) |
![]() | DesignMode | |
![]() | EnableDecompression | Gets or sets a value that indicates whether decompression is enabled for this HttpWebClientProtocol. (Inherited from HttpWebClientProtocol.) |
![]() | Events | |
![]() | PreAuthenticate | Gets or sets whether pre-authentication is enabled.(Inherited from WebClientProtocol.) |
![]() | Proxy | Gets or sets proxy information for making an XML Web service request through a firewall.(Inherited from HttpWebClientProtocol.) |
![]() | RequestEncoding | The Encoding used to make the client request to the XML Web service.(Inherited from WebClientProtocol.) |
![]() | Site | |
![]() | Timeout | Indicates the time an XML Web service client waits for the reply to a synchronous XML Web service request to arrive (in milliseconds).(Inherited from WebClientProtocol.) |
![]() | UnsafeAuthenticatedConnectionSharing | Gets or sets a value that indicates whether connection sharing is enabled when the client uses NTLM authentication to connect to the Web server that hosts the XML Web service.(Inherited from HttpWebClientProtocol.) |
![]() | Url | Gets or sets the base URL of the XML Web service the client is requesting.(Inherited from WebClientProtocol.) |
![]() | UseDefaultCredentials | Gets or sets a value that indicates whether to set the Credentials property to the value of the CredentialCache.DefaultCredentials property.(Inherited from WebClientProtocol.) |
![]() | UserAgent | Gets or sets the value for the user agent header that is sent with each request.(Inherited from HttpWebClientProtocol.) |
| Name | Description | |
|---|---|---|
![]() | Abort() | Cancels a request to an XML Web service method.(Inherited from WebClientProtocol.) |
![]() | BeginInvoke(String, String, Object[], AsyncCallback, Object) | Starts an asynchronous invocation of a method of an XML Web service. |
![]() | CancelAsync(Object) | Cancels an asynchronous call to an XML Web service method, unless the call has already completed.(Inherited from HttpWebClientProtocol.) |
![]() | CreateObjRef(Type) | Creates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.(Inherited from MarshalByRefObject.) |
![]() | Dispose() | |
![]() | Dispose(Boolean) | |
![]() | EndInvoke(IAsyncResult) | Completes asynchronous invocation of an XML Web service method using HTTP. |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetLifetimeService() | Retrieves the current lifetime service object that controls the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | GetService(Type) | |
![]() | GetType() | |
![]() | GetWebRequest(Uri) | Creates a WebRequest for the specified URI.(Inherited from HttpWebClientProtocol.) |
![]() | GetWebResponse(WebRequest) | Returns a response from a synchronous request to an XML Web service method.(Inherited from HttpWebClientProtocol.) |
![]() | GetWebResponse(WebRequest, IAsyncResult) | Returns a response from an asynchronous request to an XML Web service method.(Inherited from HttpWebClientProtocol.) |
![]() | InitializeLifetimeService() | Obtains a lifetime service object to control the lifetime policy for this instance.(Inherited from MarshalByRefObject.) |
![]() | Invoke(String, String, Object[]) | Invokes an XML Web service method using HTTP. |
![]() | InvokeAsync(String, String, Object[], SendOrPostCallback) | Invokes the specified method asynchronously. |
![]() | InvokeAsync(String, String, Object[], SendOrPostCallback, Object) | Invokes the specified method asynchronously while maintaining an associated state. |
![]() | MemberwiseClone() | |
![]() | MemberwiseClone(Boolean) | Creates a shallow copy of the current MarshalByRefObject object.(Inherited from MarshalByRefObject.) |
![]() | ToString() |
This class specifies most of the implementation for communicating with an XML Web service over HTTP using encoders to encode the parameters and return values into common MIME formats. These encoders derive from the MimeFormatter class. By default, a proxy class deriving from HttpSimpleClientProtocol encodes parameters using the application/x-www-form-urlencoded MIME type and the response in plain XML. Custom mime formatters can be specified using the HttpMethodAttribute attribute, however, there is no support for integrating this into a service description and proxy generation.
Notes to Inheritors: When you override this class, you can introduce methods in the derived class that are specific to a particular type of an XML Web service. The methods simply capture the parameters, and call the base class to do the work of communicating with the site. If the introduced methods are asynchronous, call the BeginInvoke and EndInvoke methods. If the introduced methods are synchronous, call the Invoke method. The overridden constructor typically sets the Url property to the URI of the XML Web service method.
The Web Services Description Language tool (Wsdl.exe) generates derived classes of HttpSimpleClientProtocol for a given Service Description.
The following code example is a proxy class generated by Wsdl.exe for the Math XML Web service below. The proxy class derives from HttpGetClientProtocol, which derives from the abstract HttpSimpleClientProtocol class.
using System.Diagnostics; using System.Xml.Serialization; using System; using System.Web.Services.Protocols; using System.Web.Services; public class MyMath : System.Web.Services.Protocols.HttpGetClientProtocol { [System.Diagnostics.DebuggerStepThroughAttribute()] public MyMath() { this.Url = "http://www.contoso.com/math.asmx"; } [System.Diagnostics.DebuggerStepThroughAttribute()] [System.Web.Services.Protocols.HttpMethodAttribute(typeof(System.Web.Services.Protocols.XmlReturnReader), typeof(System.Web.Services.Protocols.UrlParameterWriter))] [return: System.Xml.Serialization.XmlRootAttribute("int", Namespace="http://www.contoso.com/", IsNullable=false)] public int Add(string num1, string num2) { return ((int)(this.Invoke("Add", (this.Url + "/Add"), new object[] {num1, num2}))); } [System.Diagnostics.DebuggerStepThroughAttribute()] public System.IAsyncResult BeginAdd(string num1, string num2, System.AsyncCallback callback, object asyncState) { return this.BeginInvoke("Add", (this.Url + "/Add"), new object[] {num1, num2}, callback, asyncState); } [System.Diagnostics.DebuggerStepThroughAttribute()] public int EndAdd(System.IAsyncResult asyncResult) { return ((int)(this.EndInvoke(asyncResult))); } }
The following code example is the Math XML Web service, from which the preceding proxy class was created.
Available since 1.1
This type is thread safe.




