HttpGetClientProtocol Class
Assembly: System.Web.Services (in system.web.services.dll)
When an XML Web service client uses the HTTP-GET protocol, parameters are encoded within the URL and the response is returned in plain XML.
If you are building an XML Web service client using ASP.NET, then a proxy class deriving indirectly or directly from WebClientProtocol needs to be created for the XML Web service you want to call. When the XML Web service client calls the XML Web service using HTTP, derive the proxy class from HttpSimpleClientProtocol, which in turn derives from WebClientProtocol.
HttpGetClientProtocol and HttpPostClientProtocol derive from HttpSimpleClientProtocol, providing the support for calling an XML Web service method using the HTTP-GET and HTTP-POST protocols respectively. Clients calling an XML Web service using SOAP should derive from SoapHttpClientProtocol.
For details on building a proxy class, see Creating an XML Web Service Proxy.
The following 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.Web.Services.dll> #using <System.Xml.dll> #using <System.dll> using namespace System::Diagnostics; using namespace System::Xml::Serialization; using namespace System; using namespace System::Web::Services::Protocols; using namespace System::Web::Services; public ref class MyMath: public System::Web::Services::Protocols::HttpGetClientProtocol { public: [System::Diagnostics::DebuggerStepThroughAttribute] MyMath() { this->Url = "http://www.contoso.com/math.asmx"; } [System::Diagnostics::DebuggerStepThroughAttribute] [System::Web::Services::Protocols::HttpMethodAttribute(System::Web::Services::Protocols::XmlReturnReader::typeid, System::Web::Services::Protocols::UrlParameterWriter::typeid)] [returnvalue:System::Xml::Serialization::XmlRootAttribute("snippet1>",Namespace="http://www.contoso.com/",IsNullable=false)] int Add( String^ num1, String^ num2 ) { array<Object^>^temp0 = {num1,num2}; return *dynamic_cast<int^>(this->Invoke( "Add", (String::Concat( this->Url, "/Add" )), temp0 )); } [System::Diagnostics::DebuggerStepThroughAttribute] System::IAsyncResult^ BeginAdd( String^ num1, String^ num2, System::AsyncCallback^ callback, Object^ asyncState ) { array<Object^>^temp1 = {num1,num2}; return this->BeginInvoke( "Add", (String::Concat( this->Url, "/Add" )), temp1, callback, asyncState ); } [System::Diagnostics::DebuggerStepThroughAttribute] int EndAdd( System::IAsyncResult^ asyncResult ) { return *dynamic_cast<int^>(this->EndInvoke( asyncResult )); } };
import System.Diagnostics.*;
import System.Xml.Serialization.*;
import System.*;
import System.Web.Services.Protocols.*;
import System.Web.Services.*;
public class MyMath extends System.Web.Services.Protocols.HttpGetClientProtocol
{
/** @attribute System.Diagnostics.DebuggerStepThroughAttribute()
*/
public MyMath()
{
this.set_Url("http://www.contoso.com/math.asmx");
} //MyMath
/** @attribute System.Diagnostics.DebuggerStepThroughAttribute()
*/
/** @attribute System.Web.Services.Protocols.HttpMethodAttribute
(System.Web.Services.Protocols.XmlReturnReader.class,
System.Web.Services.Protocols.UrlParameterWriter.class)
*/
public int Add(String num1, String num2)
{
return Integer.parseInt(System.Convert.ToString(
this.Invoke("Add", this.get_Url() + "/Add",
new Object[]{num1, num2})));
} //Add
/** @attribute System.Diagnostics.DebuggerStepThroughAttribute()
*/
public System.IAsyncResult BeginAdd(String num1, String num2,
System.AsyncCallback callback, Object asyncState)
{
return this.BeginInvoke("Add", this.get_Url() + "/Add",
new Object[]{num1, num2}, callback, asyncState) ;
} //BeginAdd
/** @attribute System.Diagnostics.DebuggerStepThroughAttribute()
*/
public int EndAdd(System.IAsyncResult asyncResult)
{
return Integer.parseInt(System.Convert.ToString(
this.EndInvoke(asyncResult))) ;
} //EndAdd
} //MyMath
The following example is the Math XML Web service, from which the above proxy class was created.
<%@ WebService Language="VJ#" Class="Math"%>
import System.Web.Services.*;
import System.*;
public class Math
{
/** @attribute WebMethod()
*/
public int Add(int num1, int num2)
{
return num1 + num2 ;
} //Add
} //Math
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
Windows 98, Windows Server 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.