0

我正在尝试使用ws:outbound-gateway从spring集成中调用一个webservice(spring-ws)。我已经使用 jaxb2marshaller 进行 oxm 映射。最初,我使用 jms:inbound-channel-adapter 来接收输入对象,将其转换为 JAXBElement(Sample),其中 Sample 是由 JAXB 从 WS-XSD 模式生成的。对象工厂用于获取 JAXBElement。

执行时,我在客户端(Spring-Integration)收到错误内部服务器错误 [500]。并在服务端(Spring-WS)抛出,发现无效字符'-',期待'>'。相同的服务(Spring-ws)可以正常工作,并且可以很好地使用 Axis-2 客户端。所以我假设服务端没有问题,并且从客户端(spring-integration)发送的消息不正确。

如果有正确的方法,请建议我,或者我错过了什么

Spring_integration 客户端

<int:channel id="wsChainInboundChannel"/>
<int:chain input-channel="wsChainInboundChannel" output-channel="wsInboundChannel">
    <int:transformer ref="jms2wsTransform" method="jmsOrderToWSEmployee"/>
</int:chain>
<int:channel id="wsInboundChannel"/>
<int-ws:outbound-gateway id="wsOutboundGateway" request-channel="wsInboundChannel" uri="http://localhost:8081/mywebservice/servicelayer"
  marshaller="masterdatajaxb2Marshaller" unmarshaller="masterdatajaxb2Marshaller"
  reply-channel="wsOutboundChannel" message-factory="messageFactory"/>

 <bean id="messageFactory" class="org.springframework.ws.soap.saaj.SaajSoapMessageFactory">
    <property name="messageFactory">
        <bean class="com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl"/>
    </property>
</bean>

<int:channel id="wsOutboundChannel"/>

jms2wsTransform 中的 jmsOrderToWSEmployee 方法是

public class WS2JMSTransformer {
private final ObjectFactory jaxbFactory = new ObjectFactory();

public JAXBElement<TEmployeeBySecurityRequest> jmsOrderToWSEmployee(Message<Order> message){
    Order order = message.getPayload();
    TEmployeeBySecurityRequest request = new TEmployeeBySecurityRequest();
    request.setEmployeeId(order.getOrderQuantity().longValue());
    return jaxbFactory.createEmployeeBySecurityRequest(request);
}
}

使用 TCP Monitor 正常执行良好的请求 SOAP 是

--MIMEBoundary_57eb271a7b65c0bacefa0a80da1b203d0661422ab29d24a3
Content-Type: application/xop+xml; charset=UTF-8; type="text/xml"
Content-Transfer-Encoding: binary
Content-ID: <0.47eb271a7b65c0bacefa0a80da1b203d0661422ab29d24a3@apache.org>

<?xml version='1.0' encoding='UTF-8'?><soapenv:Envelope
xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Body>  
<ns1:employeeBySecurity_Request xmlns:ns1="http://com/clickandbuy/mywebservice/">   
<ns1:employeeId>12312</ns1:employeeId></ns1:employeeBySecurity_Request></soapenv:Body> 
</soapenv:Envelope>
--MIMEBoundary_57eb271a7b65c0bacefa0a80da1b203d0661422ab29d24a3--

而使用 Spring_integartion 客户端 SOAP(错误一)是,

------=_Part_0_157378300.1372091736608
Content-Type: application/xop+xml; charset=utf-8; type="text/xml"

<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><SOAP-  
ENV:Header/><SOAP-ENV:Body><ns2:employeeBySecurity_Request   
xmlns:ns2="http://com/clickandbuy/mywebservice/"><ns2:employeeId>6</ns2:employeeId>
</ns2:employeeBySecurity_Request></SOAP-ENV:Body></SOAP-ENV:Envelope>
------=_Part_0_157378300.1372091736608--

我观察到 ?xml version='1.0' encoding='UTF-8'?> 并且缺少其他一些东西。有没有办法解决这个问题

谢谢

4

1 回答 1

0

嗨,我终于找到了问题所在。对于作为 JAXB 编组器 bean 的 masterdatajaxb2Marshaller,有一个名为 mtomEnabled 的属性,在我的配置中用于发送/接收带有 SOAP 消息的附件是正确的。

<property name="mtomEnabled" value="true"/>

如上所述,messageFactory 是 SaajSoapMessageFactory,它以某种方式导致了错误。如果我将消息工厂更改为 AxiomSoapMessageFactory 它工作正常。

<bean id="messageFactory"  class="org.springframework.ws.soap.axiom.AxiomSoapMessageFactory">

</bean>
于 2013-06-25T07:44:22.943 回答