在Spring WS中将自定义元素添加到SOAP标头

时间:2014-08-13 17:26:08

标签: java spring web-services soap spring-ws

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

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

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

1 个答案:

答案 0 :(得分:3)

我设法以某种方式解决了这个问题,感谢@GPI的提示。我对Spring WS和javax.xml.whatever相当新,所以我无法判断这是否是正确或优雅的方式,但它完全符合我的要求。

此代码根据通过JAXB从XSD架构生成的对象,将自定义头元素添加到<SOAP-ENV: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();
    }
}