SOAP标题安全性未被理解

时间:2011-10-12 01:50:56

标签: soapheader

我正在使用asp.net 3.5 C#作为webservice使用者,我正在尝试使用第三方java webservice,我已经在我的请求中附加了soap header security。我的请求没有问题,但响应部分我得到“SOAP标题安全性未被理解”。也许我错过了我的一些配置或java端的东西?

以下是回复信封:

<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
   <env:Header>
      <wsse:Security env:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
         <wsu:Timestamp xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd">
            <wsu:Created>2011-10-12T01:15:43.484Z</wsu:Created>
            <wsu:Expires>2011-10-12T01:20:43.484Z</wsu:Expires>
         </wsu:Timestamp>
      </wsse:Security>
   </env:Header>
   <env:Body>
      <pv:StatusResponse xmlns:pv="http://tempuri.org/lps" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
         <pv:status>0</pv:status>
      </pv:StatusResponse>
   </env:Body>
</env:Envelope>

提前致谢。

1 个答案:

答案 0 :(得分:1)

我最终将整个项目从VS2008降级到VS2005,以便最大化WSE3.0的特性和功能。 XD