如何删除 来自SOAP请求
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何删除 来自SOAP请求相关的知识,希望对你有一定的参考价值。
我正在使用第三方Duplex服务(假设这已经实现了回调合同)。以下是配置部分。该服务抛出异常,说它无法理解请求XML中的标记“a:To mustUnderstand =”1“。
<endpoint address="http://vmsvalservice-uat.rpdata.com:80/vms-valuation/soap/soapws"
binding="customBinding" bindingConfiguration="VMSSSO_CustomBinding" behaviorConfiguration="VMSSSOHeader"
contract="VMSSSOService.VmsPort" name="VmsPortSoap11">
</endpoint>
<binding name="CustomBinding" receiveTimeout="00:10:00" sendTimeout="00:01:00">
<security authenticationMode="UserNameOverTransport" enableUnsecuredResponse="true" allowInsecureTransport="true"/>
<compositeDuplex clientBaseAddress="http://localhost:8080"/>
<oneWay maxAcceptedChannels ="2"></oneWay>
<textMessageEncoding messageVersion="Soap11WSAddressing10" writeEncoding="utf-8" />
<httpTransport maxBufferPoolSize="524288" maxBufferSize="524288" maxReceivedMessageSize="524288"/>
</binding>
请求XML:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:a="http://www.w3.org/2005/08/addressing" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<s:Header>
<a:MessageID>urn:uuid:76901ce5-0bab-42e2-ac76-18eddf367d25</a:MessageID>
<a:To s:mustUnderstand="1">http://vmsvalservice-uat.rpdata.com/vms-valuation/soap/soapws</a:To>
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
我尝试了两种方法来解决它。
- 我已经尝试过BeforeSendRequest来控制行为,但是在调用此事件后,此标记将添加到Soap信封中。
- 试图通过编写一个类并覆盖MustUnderstand属性将mustUnderstand重置为0,然后接受XML。
无论如何我可以阻止这个标签出去或重置MustUnderstand。
任何建议都非常感谢。
答案
我验证了xml,发现架构需要a。您应该按如下方式验证整个XML:从VS菜单:项目:添加新项:XML文件。将XML粘贴到窗口中,确保只有一个标识行。任何错误都会在错误列表中显示,就像编译错误一样。
<?xml version="1.0" encoding="utf-8" ?>
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/" xmlns:a="http://www.w3.org/2005/08/addressing" xmlns:u="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
<s:Header>
<a:MessageID>urn:uuid:76901ce5-0bab-42e2-ac76-18eddf367d25</a:MessageID>
<a:To s:mustUnderstand="1">http://vmsvalservice-uat.rpdata.com/vms-valuation/soap/soapws</a:To>
<o:Security s:mustUnderstand="1" xmlns:o="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
</o:Security>
</s:Header>
<s:Body>
</s:Body>
</s:Envelope>
另一答案
实际上通过显式删除给定的标头并在之后重新插入它来解决这个问题:
newHeader = MessageHeader.CreateHeader("To", "http://www.w3.org/2005/08/addressing", m.Headers.To.ToString(), false);
index = m.Headers.FindHeader("To", Definitions.WSA_NAMESPACE_FULL);
m.Headers.RemoveAt(index);
m.Headers.Insert(index, newHeader);
以上是关于如何删除 来自SOAP请求的主要内容,如果未能解决你的问题,请参考以下文章
如何使用来自iPhone应用程序的SOAP请求将图像+ xml上传到Web服务器
来自 Siebel 的 SOAP 请求在每个元素中都有命名空间
强制在来自 NET Web 服务代理类的 SOAP 请求中包含默认值属性属性