<system.serviceModel> <bindings> <wshttpBinding> <binding name="TestBinding"> <security mode="TransportWithMessageCredential"> <message clIEntCredentialType="Certificate" /> </security> </binding> </wshttpBinding> </bindings> <behaviors> <endpointBehaviors> <behavior name="TestBehavior"> <callbackDeBUG includeExceptionDetailinFaults="true" /> <clIEntCredentials> <clIEntCertificate findValue="Acme" storeLocation="CurrentUser" storename="My" x509FindType="FindBySubjectname" /> <serviceCertificate> <authentication certificateValIDationMode="PeerOrChainTrust" /> </serviceCertificate> </clIEntCredentials> </behavior> </endpointBehaviors> </behaviors> <clIEnt> <endpoint address="https://acme.com/webservices" binding="wshttpBinding" bindingConfiguration="TestBinding" behaviorConfiguration="TestBehavior" contract="AcmeContract" name="AcmeEndpoint"></endpoint> </clIEnt></system.serviceModel>
问题是第三方服务器抛出以下异常:
Received protocol
‘_http://schemas.xmlsoap.org/wsdl/soap12/’,
required protocol
‘_http://schemas.xmlsoap.org/wsdl/soap/’.
我明白,使用wshttpBinding将导致WCF发送SOAP 1.2请求,而使用basichttpBinding会导致SOAP 1.1请求.由于WS-Security部分是必需的,据了解,我必须使用wshttpBinding.我的问题是如何强制SOAP 1.1请求?我有什么选择?
解决方法 为了使用WS-Addressing(wshttpBinding),但是使用SOAP 1.1(默认为SOAP 1.2),您需要定义一个自定义的WCF绑定(例如在config中),并使用它:<bindings> <customBinding> <binding name="WshttpSoap11" > <textMessageEnCoding messageVersion="Soap11WSAddressing10" /> <httpTransport/> </binding> </customBinding></bindings>
然后在您的端点定义中,使用:
<endpoint name="WsSoap11" address="....." binding="customBinding" bindingConfiguration="wshttpSoap11" contract="....." />
当然,您可以使用附加属性扩展上面定义的绑定,例如< ReliableMessaging的>或其他.
有关WCF绑定的更为非常详细,非常有用的信息以及如何在配置中“编写”自己的自定义绑定,请阅读Aaron Skonnard发表的这篇优秀的MSDN文章Service Station: WCF Bindings In Depth.
总结以上是内存溢出为你收集整理的c# – WCF是否支持使用SOAP 1.1的WS-Security?全部内容,希望文章能够帮你解决c# – WCF是否支持使用SOAP 1.1的WS-Security?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)