3

当我通过添加服务引用来生成 Web 服务代理类时,代码生成器会实现一个基于DuplexClientBase类的代理。此实现需要启用双工的绑定配置。因为,当使用双工时,wsDualHttpBinding似乎只有工作。

我想生成一个没有双工合同的类。我可以指示 Visual Studio 或 svcutil.exe 不生成双工代码吗?Web 服务是基于 SOAP 的,所以我无法想象为什么我实际上需要双工。

该服务的web.config如下:

<system.serviceModel>
    <services>
      <service behaviorConfiguration="IncidentBehavior" name="omwWS.ServiceImplementation.Incident">
        <endpoint address="" binding="customBinding" bindingConfiguration="CustomBinding_IIncident"
          contract="omwWS.ServiceContracts.IncidentAccess" />
      </service>
    </services>
    <bindings>
      <customBinding>
        <binding name="CustomBinding_IIncident">
          <textMessageEncoding messageVersion="Soap12WSAddressingAugust2004" />
          <httpsTransport authenticationScheme="Basic" maxReceivedMessageSize="52428800" maxBufferSize="52428800" />
        </binding>
      </customBinding>
    </bindings>
    <behaviors>
      <serviceBehaviors>
        <behavior name="IncidentBehavior">
          <serviceDebug includeExceptionDetailInFaults="true" />
        </behavior>
      </serviceBehaviors>
    </behaviors>
  </system.serviceModel>
4

1 回答 1

0

最简单的方法是使用添加 Web 服务引用而不是使用添加服务引用。

因为你的服务是简单的结构化soap服务,没有双工等高级场景

通信,您不会在客户端丢失任何东西。

在“添加服务参考”窗口中,单击高级按钮,提供地址并单击添加参考。

它将基于 .NET 2 技术为您生成客户端

让我知道是否需要任何其他信息。

祝你好运

于 2013-09-10T04:12:20.873 回答