我正在使用SOAPUI中的示例输入测试WCF服务.当我点击运行时,我得到如下的SOAP异常:
<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing">
<s:Header>
<a:Action s:mustUnderstand="1">http://www.w3.org/2005/08/addressing/fault</a:Action>
</s:Header>
<s:Body>
<s:Fault>
<s:Code>
<s:Value>s:Sender</s:Value>
<s:Subcode>
<s:Value>a:ActionMismatch</s:Value>
</s:Subcode>
</s:Code>
<s:Reason>
<s:Text xml:lang="en-US">The SOAP action specified on the message, '', does not match the HTTP SOAP Action, 'http://XXX.XX.XXXX/IXXXXXX/AddOrderInfromation'.</s:Text>
</s:Reason>
<s:Detail>
<a:ProblemHeaderQName>a:Action</a:ProblemHeaderQName>
</s:Detail>
</s:Fault>
</s:Body>
</s:Envelope>
Run Code Online (Sandbox Code Playgroud)
在博客中,他们要求添加Soap Action.如何在我的请求中添加Soap Action:
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:wkus="http://XXX.XX.XXXX/IXXXXXX">
<soap:Header />
<soap:Body>
<ns1:AddOrderInfromation>
<!--Optional:-->
<ns1:inputsting>
<ns1:AddOrderInfromation>
<ns1:OrderNo>4500146</ns1:OrderNo>
<ns1:OrderDate>08/22/2014</ns1:OrderDate>
<ns1:TotalItems>1</ns1:TotalItems>
</ns1:AddOrderInfromation>
</ns1:inputsting>
</ns1:AddOrderInfromation>
Run Code Online (Sandbox Code Playgroud)
请建议.提前致谢
我想使用 translate 函数而不是使用 replace 从字符串中删除单词 '和' 。
例如:
<xsl:variable name="nme" select="translate(./Name/text(), ',:, '')" />
Run Code Online (Sandbox Code Playgroud)
除了“,:”,我还想删除“和”这个词。请建议。
我想在vb.net中以这种特殊格式"20.08.2014"打印昨天的日期.
有人可以分享这段代码吗?