0

我正在开发一个 Web 服务客户端。

Unprocessed 'mustUnderstand' header element: {http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd}Security

无论它在哪里与 SoapUI 一起正常工作,都会返回带有以下标头的正确响应:

<S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">
   <S:Header>
      <wsse:Security S:mustUnderstand="1">
         <wsu:Timestamp wsu:Id="XWSSGID-13660988101781895308327" xmlns:ns15="http://schemas.xmlsoap.org/ws/2006/02/addressingidentity" xmlns:ns14="http://docs.oasis-open.org/ws-sx/ws-secureconversation/200512" xmlns:ns13="http://www.w3.org/2003/05/soap-envelope">
            <wsu:Created>2013-04-16T08:02:05Z</wsu:Created>
            <wsu:Expires>2013-04-16T08:07:05Z</wsu:Expires>
         </wsu:Timestamp>
      </wsse:Security>
   </S:Header>

我不能使用 wsHttpBinding。我的要求是:

<env:Envelope xmlns:env="http://schemas.xmlsoap.org/soap/envelope/">
   <env:Header>
      <wsse:Security xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd">
         <wsse:UsernameToken>
            <wsse:Username>wstest</wsse:Username>
            <wsse:Password>wstest</wsse:Password>
         </wsse:UsernameToken>
      </wsse:Security>
   </env:Header>
   <env:Body>
     <-- client method call implementation>
   </env:Body>
</env:Envelope>

请帮助我。

4

1 回答 1

0

在 getHeaders() 方法中,您需要返回一个包含根元素的 XML 元素。在这种情况下,我将使用以下实例化构建一个 QName 元素并添加到 Set 并在 getHeaders 元素中返回它:

@Override
public Set<QName> getHeaders(){
Set<QName> headers = new HashSet<QName>();
QName ck = new QName("http://coldyak.com", "coldyak", "cyk");
headers.add(ck);
return headers;
}

这就是处理 mustunderstand 属性所需的全部内容。它有点像强制 web 服务处理 header 元素的合同。

于 2013-04-16T13:03:23.760 回答