gpt4 book ai didi

java - 将自定义元素添加到 Spring WS 中的 SOAP header

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:47:09 24 4
gpt4 key购买 nike

我正在使用带有 JAXB 绑定(bind)的 Spring WS 编写 Web 服务客户端应用程序。我正在使用的服务需要通过 SOAP header 中的 wsse:security 元素(以及一个自定义 header )进行身份验证。我已经编译了所有必要的模式,包括 wsse.xsd 编译为org.xmlsoap.schemas.ws._2002._12.secext.Security

但我找不到将此元素或任何其他元素插入 SOAP header 的方法。我知道我可以使用拦截器或 SoapActionCallback,但它们允许我做的是手动构建 header 并通过 ((SaajSoapMessage)webServiceMessage).getSoapHeader() 将其添加到 header 部分.addHeaderElement(qName) 等等。但我不想手动构建此 header ,因为我有一个可以轻松编码的相应类。

我的问题 - 在 Spring WS 中调用 Web 服务时,有没有办法将对象插入 SOAP header (或信封的其他部分)?我使用 Apache CXF 和 Axis2 来使用 Web 服务,这从来都不是问题 - 框架只是在幕后为我完成(通常通过服务 stub 机制)。

最佳答案

我设法以某种方式解决了这个问题,感谢@GPI 提供的提示。我对 Spring WS 和 javax.xml.whatever 还很陌生,所以我不知道这是正确的还是优雅的方式,但它确实符合我的要求。

此代码将自定义 header 元素添加到 <SOAP-ENV:Header> ,基于我通过 JAXB 从 XSD 模式生成的对象。我不知道 Transformer 如何知道我想把这些元素放在哪里,但它把它们正确地放在了 Header 部分。

public class HeaderComposingCallback implements WebServiceMessageCallback {

private final String action;

public HeaderComposingCallback( String action ) {
this.action = action;
}

@Override
public void doWithMessage(WebServiceMessage webServiceMessage) throws IOException, TransformerException {

SoapHeader soapHeader = ((SoapMessage)webServiceMessage).getSoapHeader();

try {
JAXBContext context = JAXBContext.newInstance( MessageHeader.class, Security.class );

DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
DocumentBuilder builder = factory.newDocumentBuilder();

Document securityDocument = builder.newDocument();
Document headerDocument = builder.newDocument();

Marshaller marshaller = context.createMarshaller();
marshaller.marshal( HeaderFactory.getHeader( action ), headerDocument );
marshaller.marshal( SecurityFactory.getSecurity(), securityDocument );

Transformer t = TransformerFactory.newInstance().newTransformer();

DOMSource headerSource = new DOMSource( headerDocument );
DOMSource securitySource = new DOMSource( securityDocument );

t.transform( headerSource, soapHeader.getResult() );
t.transform( securitySource, soapHeader.getResult() );

} catch (JAXBException | ParserConfigurationException e) {
e.printStackTrace();
}
}

}

然后我简单地传递HeaderComposingCallback反对 marshalSendAndReceive()服务调用期间的方法。

编辑(在 Arjen 的评论之后)

Arjen 是对的。我想做的事情可以更简单地实现。现在我的doWithMessage方法如下所示:

    @Override
public void doWithMessage(WebServiceMessage webServiceMessage) throws IOException, TransformerException {

SoapHeader soapHeader = ((SoapMessage)webServiceMessage).getSoapHeader();

try {
JAXBContext context = JAXBContext.newInstance( MessageHeader.class, Security.class );

Marshaller marshaller = context.createMarshaller();
marshaller.marshal( header, soapHeader.getResult() );
marshaller.marshal( security, soapHeader.getResult() );

} catch (JAXBException e) {
e.printStackTrace();
}
}

关于java - 将自定义元素添加到 Spring WS 中的 SOAP header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25292485/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com