【问题标题】:How to consume an ASP.net webservice and WCF webservice using a common Reference如何使用通用参考使用 ASP.net Web 服务和 WCF Web 服务
【发布时间】:2012-04-27 15:35:57
【问题描述】:

我正在编写一个 C# 控制台应用程序,该应用程序必须使用通用代理来使用 ASP.net Web 服务和 WCF 服务。 WCF 和 ASP.net Web 服务将实现相同的数据和服务契约以及相同的命名空间。 我需要知道它是如何实现的。

提前感谢您的建议和意见。

@Pertu 感谢您的输入,我正在使用相同的方法,但是同一消费者无法同时调用这两种服务。下面是代码截图

======= Consumer 用来调用 web 服务的代理==========

[System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.0.30319.1")]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Web.Services.WebServiceBindingAttribute(Name="BaseServiceSoap", 
Namespace="http://tempuri.org/")]

public partial class BaseService : System.Web.Services.Protocols.SoapHttpClientProtocol 
{

private System.Threading.SendOrPostCallback GetWeightOperationCompleted;

/// <remarks/>
public BaseService()
{
    this.Url = "http://localhost:53899/BaseService.asmx";
}
......

======== Consumer Code
//Below call to ASP.NEt webservice succeeds 

BaseService typeACalculator = new BaseService();
typeACalculator.Url = "http://localhost:54106/TypeA.asmx";
Console.WriteLine("Article for type A weighs: " +
    typeACalculator.GetWeight(articleForCalcA).ToString());

//Below call to WCF fails

BaseService WCFCalculator = new BaseService();

WCFCalculator.Url = "http://localhost:52224/TypeWCF35Calc.svc";
Console.WriteLine("Article for type WCF weighs: " +
    WCFCalculator.GetWeight(articleForCalcB).ToString());
Console.ReadKey();

======== Contract in WCF===============

 [ServiceContract]
 public interface IBaseServiceSoap 
 {
   [OperationContract]
    double GetWeight(Article article);
 }

====== Contract in ASP.NEt webservice================
/// <remarks/>


  [System.CodeDom.Compiler.GeneratedCodeAttribute("wsdl", "4.0.30319.1")]
  [System.Web.Services.WebServiceBindingAttribute(Name="BaseServiceSoap", 
    Namespace="http://tempuri.org/")]
  public interface IBaseServiceSoap 
  {

   /// <remarks/>
   [System.Web.Services.WebMethodAttribute()]
   [System.Web.Services.Protocols.SoapDocumentMethodAttribute  
   ("http://tempuri.org/GetWeight",     
   RequestNamespace="http://tempuri.org/", ResponseNamespace="http://tempuri.org/",  
   Use=System.Web.Services.Description.SoapBindingUse.Literal, 
   ParameterStyle=System.Web.Services.Protocols.SoapParameterStyle.Wrapped)]

   double GetWeight(Article article);
  }    

嗯,已经在路上一段时间了.... 这是wsdls

===ASMX webservice 的 WSDL ==== 使用 WSDL.exe 创建

<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" 
 xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 
 xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" 
 xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
 xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" 
 xmlns:s="http://www.w3.org/2001/XMLSchema" 
 xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" 
 xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
      <s:element name="GetWeight">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="article" type="tns:Article" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:complexType name="Article">
        <s:sequence>
          <s:element minOccurs="0" maxOccurs="1" name="Id" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Name" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Characteristics" 
           type="tns:ArticleCharacteristics" />
        </s:sequence>
      </s:complexType>
      <s:complexType name="ArticleCharacteristics">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="Length" type="s:double" />
          <s:element minOccurs="1" maxOccurs="1" name="Height" type="s:double" />
          <s:element minOccurs="1" maxOccurs="1" name="Width" type="s:double" />
          <s:element minOccurs="1" maxOccurs="1" name="Weight" type="s:double" />
        </s:sequence>
      </s:complexType>
      <s:element name="GetWeightResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="GetWeightResult" type="s:double" />
          </s:sequence>
        </s:complexType>
      </s:element>
    </s:schema>
  </wsdl:types>
  <wsdl:message name="GetWeightSoapIn">
    <wsdl:part name="parameters" element="tns:GetWeight" />
  </wsdl:message>
  <wsdl:message name="GetWeightSoapOut">
    <wsdl:part name="parameters" element="tns:GetWeightResponse" />
  </wsdl:message>
  <wsdl:portType name="BaseServiceSoap">
    <wsdl:operation name="GetWeight">
      <wsdl:input message="tns:GetWeightSoapIn" />
      <wsdl:output message="tns:GetWeightSoapOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="BaseServiceSoap" type="tns:BaseServiceSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="GetWeight">
      <soap:operation soapAction="http://tempuri.org/GetWeight" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="BaseServiceSoap1" type="tns:BaseServiceSoap">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="GetWeight">
      <soap12:operation soapAction="http://tempuri.org/GetWeight" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="TypeA">
    <wsdl:port name="BaseServiceSoap" binding="tns:BaseServiceSoap">
      <soap:address location="http://localhost:54106/TypeA.asmx" />
    </wsdl:port>
    <wsdl:port name="BaseServiceSoap1" binding="tns:BaseServiceSoap1">
      <soap12:address location="http://localhost:54106/TypeA.asmx" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>

===== WSDL of WCF webservice, generated after configuring the WCF webservice===
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"  
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" 
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" 
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 
xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" 
xmlns:s="http://www.w3.org/2001/XMLSchema" 
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" targetNamespace="http://tempuri.org/" 
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
      <s:element name="GetWeight">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="article" type="tns:Article" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:complexType name="Article">
        <s:sequence>
          <s:element minOccurs="0" maxOccurs="1" name="Id" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Name" type="s:string" />
          <s:element minOccurs="0" maxOccurs="1" name="Characteristics"  
           type="tns:ArticleCharacteristics" />
        </s:sequence>
      </s:complexType>
      <s:complexType name="ArticleCharacteristics">
        <s:sequence>
          <s:element minOccurs="1" maxOccurs="1" name="Length" type="s:double" />
          <s:element minOccurs="1" maxOccurs="1" name="Height" type="s:double" />
          <s:element minOccurs="1" maxOccurs="1" name="Width" type="s:double" />
          <s:element minOccurs="1" maxOccurs="1" name="Weight" type="s:double" />
        </s:sequence>
      </s:complexType>
      <s:element name="GetWeightResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="GetWeightResult" type="s:double" />
          </s:sequence>
        </s:complexType>
      </s:element>
    </s:schema>
  </wsdl:types>
  <wsdl:message name="GetWeightSoapIn">
    <wsdl:part name="parameters" element="tns:GetWeight" />
  </wsdl:message>
  <wsdl:message name="GetWeightSoapOut">
    <wsdl:part name="parameters" element="tns:GetWeightResponse" />
  </wsdl:message>
  <wsdl:portType name="BaseServiceSoap">
    <wsdl:operation name="GetWeight">
      <wsdl:input message="tns:GetWeightSoapIn" />
      <wsdl:output message="tns:GetWeightSoapOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="BaseServiceSoap" type="tns:BaseServiceSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="GetWeight">
      <soap:operation soapAction="http://tempuri.org/GetWeight" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="BaseServiceSoap1" type="tns:BaseServiceSoap">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="GetWeight">
      <soap12:operation soapAction="http://tempuri.org/GetWeight" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="TypeA">
    <wsdl:port name="BaseServiceSoap" binding="tns:BaseServiceSoap">
      <soap:address location="http://localhost:54106/TypeA.asmx" />
    </wsdl:port>
    <wsdl:port name="BaseServiceSoap1" binding="tns:BaseServiceSoap1">
      <soap12:address location="http://localhost:54106/TypeA.asmx" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>

【问题讨论】:

    标签: asp.net wcf web-services soap wsdl


    【解决方案1】:

    Web 服务的优点在于,客户端是什么或服务的底层实现是什么并不重要。

    使用您所说的相同合同以您想要或可以的任何方式(许多人会说使用 WCF)构建您的代理,然后根据需要调用服务;我假设 SOAP 地址不同,因此请确保将其参数化(在命令行参数中)...

    【讨论】:

    • 感谢您的输入,我正在使用相同的方法,但是同一消费者无法同时调用这两种服务。下面是代码快照
    • @Sam,如果它不起作用,那么合同就不一样了......或者电线上的某些东西不能很好地凝胶。我建议这样做:生成一个适用于每个实现的客户端。使用提琴手比较成功的消息交换的线路转储并从那里获取。或者,您能否为这两个实现生成 WSDL 并发布它而不是代码?
    【解决方案2】:

    是的,您可以使用相同的代码使用 WCF 服务和 ASP.NET WebService。

    步骤 1- 你需要先改变你的 WCF 服务来拦截肥皂头。使用WCFExtras

    步骤 2- 使用使用 ASP.NET Web 服务生成的代理。

    【讨论】:

      猜你喜欢
      • 2010-11-15
      • 1970-01-01
      • 1970-01-01
      • 2011-07-06
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多