如何将XML Web服务客户端配置为对标题名称空间使用MessageVersion.Soap11WSAddressing10。当前,它使用MessageVersion.None命名空间,而我无法更改它。

最佳答案

您需要使用自定义WCF绑定来执行此操作:

  <system.serviceModel>
    <bindings>
      <customBinding>
        <binding name="Soap11Addr10">
          <textMessageEncoding messageVersion="Soap11WSAddressing10" />
          <httpTransport/>
        </binding>
      </customBinding>
    </bindings>


然后在您的服务端点中引用该自定义绑定(按名称):

    <services>
      <service name="YourAssembly.YourService">
        <endpoint name="test"
                  address=""
                  binding="customBinding"
                  bindingConfiguration="Soap11Addr10"
                  contract="YourAssembly.IYourService" />
      </service>
    </services>
  </system.serviceModel>


如果要从客户端使用它,则还需要将自定义绑定配置复制到客户端的app.configweb.config并在那里引用它(当然(在Visual Studio中使用Add Service Reference会为您完成此操作)) 。

关于c# - BasicHttpBinding和MessageVersion.None,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2847645/

10-11 19:16