HttpGetClientProtocol 类

定义

使用 HTTP-GET 协议的 XML Web 服务客户端代理的基类。

public ref class HttpGetClientProtocol : System::Web::Services::Protocols::HttpSimpleClientProtocol
public class HttpGetClientProtocol : System.Web.Services.Protocols.HttpSimpleClientProtocol
type HttpGetClientProtocol = class
    inherit HttpSimpleClientProtocol
Public Class HttpGetClientProtocol
Inherits HttpSimpleClientProtocol
继承

示例

以下示例是由下面的 XML Web 服务 Wsdl.exe Math 生成的代理类。 代理类派生自 HttpGetClientProtocol抽象 HttpSimpleClientProtocol 类。

#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 ));
   }
};
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)));
    }
}
Option Strict On
Option Explicit On

Imports System.Diagnostics
Imports System.Web.Services
Imports System.Web.Services.Protocols
Imports System.Xml.Serialization


Public Class MyMath
    Inherits System.Web.Services.Protocols.HttpGetClientProtocol
    
    <System.Diagnostics.DebuggerStepThroughAttribute()>  _
    Public Sub New()
        MyBase.New
        Me.Url = "http://www.contoso.com/math.asmx"
    End Sub
    
    <System.Diagnostics.DebuggerStepThroughAttribute(),  _
     System.Web.Services.Protocols.HttpMethodAttribute(GetType(System.Web.Services.Protocols.XmlReturnReader), GetType(System.Web.Services.Protocols.UrlParameterWriter))>  _
    Public Function Add(ByVal num1 As String, ByVal num2 As String) As <System.Xml.Serialization.XmlRootAttribute("int", [Namespace]:="http://www.contoso.com/", IsNullable:=false)> Integer
        Return CType(Me.Invoke("Add", (Me.Url + "/Add"), New Object() {num1, num2}),Integer)
    End Function
    
    <System.Diagnostics.DebuggerStepThroughAttribute()>  _
    Public Function BeginAdd(ByVal num1 As String, ByVal num2 As String, ByVal callback As System.AsyncCallback, ByVal asyncState As Object) As System.IAsyncResult
        Return Me.BeginInvoke("Add", (Me.Url + "/Add"), New Object() {num1, num2}, callback, asyncState)
    End Function
    
    <System.Diagnostics.DebuggerStepThroughAttribute()>  _
    Public Function EndAdd(ByVal asyncResult As System.IAsyncResult) As Integer
        Return CType(Me.EndInvoke(asyncResult),Integer)
    End Function
End Class

下面的示例是 Math 创建上述代理类的 XML Web 服务。

<%@ WebService Language="C#" Class="Math"%>
 using System.Web.Services;
 using System;
 
 public class Math {
      [ WebMethod ]
      public int Add(int num1, int num2) {
          return num1+num2;
          }
 }
<%@ WebService Language="VB" Class="Math"%>
Imports System.Web.Services
Imports System

Public Class Math
    <WebMethod()> _
    Public Function Add(num1 As Integer, num2 As Integer) As Integer
        Return num1 + num2
    End Function 'Add
End Class 'Math

注解

当 XML Web 服务客户端使用 HTTP-GET 协议时,参数在 URL 中进行编码,并且响应以纯 XML 返回。

如果要使用 ASP.NET 生成 XML Web 服务客户端,则需要为要调用的 XML Web 服务创建间接派生或直接从 WebClientProtocol 派生的代理类。 当 XML Web 服务客户端使用 HTTP 调用 XML Web 服务时,从中派生代理类,而代理类又派生自该HttpSimpleClientProtocolWebClientProtocol

HttpGetClientProtocol 并从 HttpPostClientProtocol 中派生 HttpSimpleClientProtocol,支持分别使用 HTTP-GET 和 HTTP-POST 协议调用 XML Web 服务方法。 使用 SOAP 调用 XML Web 服务的客户端应派生自 SoapHttpClientProtocol.

有关生成代理类的详细信息,请参阅 创建 XML Web 服务代理

构造函数

名称 说明
HttpGetClientProtocol()

初始化 HttpGetClientProtocol 类的新实例。

属性

名称 说明
AllowAutoRedirect

获取或设置客户端是否自动遵循服务器重定向。

(继承自 HttpWebClientProtocol)
CanRaiseEvents

获取一个值,该值指示组件是否可以引发事件。

(继承自 Component)
ClientCertificates

获取客户端证书的集合。

(继承自 HttpWebClientProtocol)
ConnectionGroupName

获取或设置请求的连接组的名称。

(继承自 WebClientProtocol)
Container

IContainer获取包含 .Component

(继承自 Component)
CookieContainer

获取或设置 Cookie 的集合。

(继承自 HttpWebClientProtocol)
Credentials

获取或设置 XML Web 服务客户端身份验证的安全凭据。

(继承自 WebClientProtocol)
DesignMode

获取一个值,该值指示当前是否 Component 处于设计模式。

(继承自 Component)
EnableDecompression

获取或设置一个值,该值指示是否为此 HttpWebClientProtocol启用解压缩。

(继承自 HttpWebClientProtocol)
Events

获取附加到此 Component对象的事件处理程序的列表。

(继承自 Component)
PreAuthenticate

获取或设置是否启用预身份验证。

(继承自 WebClientProtocol)
Proxy

获取或设置通过防火墙发出 XML Web 服务请求的代理信息。

(继承自 HttpWebClientProtocol)
RequestEncoding

Encoding用于向 XML Web 服务发出客户端请求。

(继承自 WebClientProtocol)
Site

获取或设置 ISiteComponent

(继承自 Component)
Timeout

指示 XML Web 服务客户端等待对同步 XML Web 服务请求的回复到达的时间(以毫秒为单位)。

(继承自 WebClientProtocol)
UnsafeAuthenticatedConnectionSharing

获取或设置一个值,该值指示客户端使用 NTLM 身份验证连接到承载 XML Web 服务的 Web 服务器时是否启用连接共享。

(继承自 HttpWebClientProtocol)
Url

获取或设置客户端请求的 XML Web 服务的基 URL。

(继承自 WebClientProtocol)
UseDefaultCredentials

获取或设置一个值,该值指示是否将 Credentials 属性设置为该属性的值 DefaultCredentials

(继承自 WebClientProtocol)
UserAgent

获取或设置随每个请求一起发送的用户代理标头的值。

(继承自 HttpWebClientProtocol)

方法

名称 说明
Abort()

取消对 XML Web 服务方法的请求。

(继承自 WebClientProtocol)
BeginInvoke(String, String, Object[], AsyncCallback, Object)

启动对 XML Web 服务方法的异步调用。

(继承自 HttpSimpleClientProtocol)
CancelAsync(Object)

取消对 XML Web 服务方法的异步调用,除非调用已完成。

(继承自 HttpWebClientProtocol)
CreateObjRef(Type)

创建一个对象,其中包含生成用于与远程对象通信的代理所需的所有相关信息。

(继承自 MarshalByRefObject)
Dispose()

释放该 Component命令使用的所有资源。

(继承自 Component)
Dispose(Boolean)

释放由托管资源使用 Component 的非托管资源,并选择性地释放托管资源。

(继承自 Component)
EndInvoke(IAsyncResult)

使用 HTTP 完成 XML Web 服务方法的异步调用。

(继承自 HttpSimpleClientProtocol)
Equals(Object)

确定指定的对象是否等于当前对象。

(继承自 Object)
GetHashCode()

用作默认哈希函数。

(继承自 Object)
GetLifetimeService()
已过时.

检索控制此实例的生存期策略的当前生存期服务对象。

(继承自 MarshalByRefObject)
GetService(Type)

返回一个对象,该对象表示服务由 Component 或其 Container提供的服务。

(继承自 Component)
GetType()

获取当前实例的 Type

(继承自 Object)
GetWebRequest(Uri)

为指定的 URI 创建实例 WebRequest

GetWebResponse(WebRequest, IAsyncResult)

返回从异步请求到 XML Web 服务方法的响应。

(继承自 HttpWebClientProtocol)
GetWebResponse(WebRequest)

返回从同步请求到 XML Web 服务方法的响应。

(继承自 HttpWebClientProtocol)
InitializeLifetimeService()
已过时.

获取生存期服务对象来控制此实例的生存期策略。

(继承自 MarshalByRefObject)
Invoke(String, String, Object[])

使用 HTTP 调用 XML Web 服务方法。

(继承自 HttpSimpleClientProtocol)
InvokeAsync(String, String, Object[], SendOrPostCallback, Object)

在保持关联状态时异步调用指定的方法。

(继承自 HttpSimpleClientProtocol)
InvokeAsync(String, String, Object[], SendOrPostCallback)

异步调用指定的方法。

(继承自 HttpSimpleClientProtocol)
MemberwiseClone()

创建当前 Object的浅表副本。

(继承自 Object)
MemberwiseClone(Boolean)

创建当前 MarshalByRefObject 对象的浅表副本。

(继承自 MarshalByRefObject)
ToString()

返回包含 String 的名称 Component(如果有)。 不应重写此方法。

(继承自 Component)

活动

名称 说明
Disposed

当组件通过对方法的调用 Dispose() 释放时发生。

(继承自 Component)

适用于

另请参阅