使用Camel Spring-WS和JAXB dataformat解组MTOM消息

时间:2011-10-30 15:28:33

标签: jaxb spring-ws apache-camel mtom

1)有没有办法使用Camel Spring-WS组件解组MTOM消息?

2)我尝试使用Camel JAXB dataformat。它没用。 Datahandler没有任何内容。 JAXB数据格式是否支持MTOM?

<dataFormats>
    <jaxb id="jaxb" contextPath="com.mycompany.hr.jaxb"/>
</dataFormats>

<route>
    <from uri="spring-ws:rootqname:{http://mycompany.com/hr/schemas}HolidayRequest?endpointMapping=#endpointMapping" />
    <unmarshal ref="jaxb"/>
    <process ref="testProcessor" />
</route>

3)我认为在JAXB数据格式中没有启用MTOM。所以我使用支持MTOM的JAXB2Marshaller创建了一个自定义数据格式。但仍面临同样的问题。

import java.io.InputStream;
import java.io.OutputStream;

import javax.xml.transform.Source;

import org.apache.camel.Exchange;
import org.apache.camel.spi.DataFormat;
import org.springframework.oxm.jaxb.Jaxb2Marshaller;

public class MtomDataFormat implements DataFormat {

    public void marshal(Exchange arg0, Object arg1, OutputStream arg2)
            throws Exception {
        // TODO Auto-generated method stub

    }

    public Object unmarshal(Exchange exchange, InputStream is) throws Exception {
        Source source = exchange.getContext().getTypeConverter().mandatoryConvertTo(Source.class, is);

        Jaxb2Marshaller mar = new Jaxb2Marshaller();
        mar.setContextPath("com.mycompany.hr.jaxb");
        mar.setMtomEnabled(true);
        return mar.unmarshal(source);
    }

}

Spring配置

             

<bean id="endpointMapping"
    class="org.apache.camel.component.spring.ws.bean.CamelEndpointMapping">
</bean>

<bean id="testProcessor" class="TestProcessor" />

<bean id="mtomDataFormat" class="MtomDataFormat" />

<camelContext xmlns="http://camel.apache.org/schema/spring">
    <route>
        <from uri="spring-ws:rootqname:{http://mycompany.com/hr/schemas}HolidayRequest?endpointMapping=#endpointMapping" />
        <unmarshal ref="mtomDataFormat"/>
        <process ref="testProcessor" />
    </route>
</camelContext>

0 个答案:

没有答案