How do I add an attachment to a response payload in Spring-WS?

后端 未结 1 589
长情又很酷
长情又很酷 2020-12-16 06:29

I\'m building a Web Services server that\'s designed to share content. I\'d like to serve the content through a SOAP response containing an attachment. Right now, I\'m using

相关标签:
1条回答
  • 2020-12-16 07:15

    The documentation in Spring-WS is particularly light on this topic, and it's actually pretty easy to add a SOAP attachment. I'll make a few assumptions:

    1. Your WSDL correctly specifies the mime:multipartRelated on the output message
    2. We're going to use the Saaj SOAP message factory

    Attachments reside in the MimeContainer on the SOAP message. To get this container, we need to manually construct the SOAP response, well, just part of it. Doing that looks like this:

    SaajSoapMessageFactory factory = new SaajSoapMessageFactory(
        javax.xml.soap.MessageFactory.newInstance());
    SaajSoapMessage message = factory.createWebServiceMessage();
    

    Now we need a DataHandler for our picture:

    DataHandler handler = new DataHandler(
        new URLDataSource(
            Service.class.getResource("coffee.jpg")));
    
    message.addAttachment("picture", handler);
    

    Okay, content: check, message: check, hm, still need to get the response to go out. The tricky part here is that we need to bring in the MessageContext so that we can set this particular message to be the one we respond with, we do that by editing our definition of getCoffee:

    public Coffee getCoffee(@RequestPayload Order order, MessageContext context)
    

    Putting it all together:

    @Endpoint
    public class Service{
    
        private SaajSoapMessageFactory saajMessageFactory; // dependency inject this
    
        @PayloadRoot(namespace = "http://foo.com/coffee", localPart = "order")
        @ResponsePayload
        public Coffee getCoffee(@RequestPayload Order order, MessageContext context){
            DataHandler handler = new DataHandler(
                new URLDataSource(
                    Service.class.getResource("coffee.jpg")));
    
            SaajSoapMessage message = saajMessageFactory.createWebServiceMessage();
            message.addAttachment("picture", handler);
    
            context.setResponse(message);
    
            return new Coffee("Hot Joe");
        }
    
        public void setSaajMessageFactory(SaajMessageFactory saajMessageFactory){
            this.saajMessageFactory = saajMessageFactory;
        }
    
        public SaajMessageFactory getSaajMessageFactory(){
            return saajMessageFactory;
        }
    
    }
    

    For good measure, here's the beans dependency injection for getting a SaajMessageFactory:

    <bean id="soapMessageFactory" class="javax.xml.soap.MessageFactory" factory-method="newInstance" />
    <bean id="saajMessageFactory" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory">
        <constructor-arg ref="soapMessageFactory" />
    </bean>
    
    <bean id="myService" class="Service">
        <property name="saajMessageFactory" ref="saajMessageFactory" />
    </bean>
    
    0 讨论(0)
提交回复
热议问题