1

我正在使用 wso2esb4.7.0 和 ActiveMQ5.8.0 http://docs.wso2.org/display/ESB470/ESB+as+a+JMS+Producerhttp://docs.wso2.org/display/ESB470/ESB+ as+a+JMS+Consumer 根据我已经完成的文档,我的消息很好地传递到队列。即使存储也很好。同时将消息放入队列 Wso2esb 给出格式等问题

ERROR - JMSMessageReceiver Unknown error processing message
org.apache.axiom.om.OMException: com.ctc.wstx.exc.WstxUnexpectedCharException: Unexpected character '{' (code 123) in prolog; expected '<'
 at [row,col {unknown-source}]: [1,1]

为什么会发生这种情况,是否有任何消息格式问题,我只传递了示例 json,例如

curl -v -H "Accept: application/json" -H "Content-Type:application/json" -H "ModifiedOn:0" -H "username:vikaash|21405735755158656" -H "password:gbin" -d '{"name":"youtility tech","mail":"faisal.shaik@youtility.in"}' http://youtility2-desktop:8282/services/JmsStore

我们如何向客户发送响应

http://stackoverflow.com/questions/18440789/how-to-give-a-response-to-client-using-wso2esb-jmsqueue
4

1 回答 1

2

这样做的原因是,如果您没有专门配置 JMS 代理以接受特定消息格式的消息,它将始终将消息视为 text/xml 格式。

因此,当您以 application/json 格式发送消息时,您将在构建消息时收到此异常。因此,如果您想从 JMS 队列中接受 json 格式的消息,您必须在代理服务配置中定义“transport.jms.ContentType”参数,如下所示。

   <parameter name="transport.jms.ContentType">
        <rules>
            <jmsProperty>contentType</jmsProperty>
            <default>application/json</default>
        </rules>
    </parameter>

以下是示例代理配置。

<proxy name="StockQuoteProxy" transports="jms">
    <target>
        <inSequence>
            <property action="set" name="OUT_ONLY" value="true"/>
        </inSequence>
        <endpoint>
            <address uri="http://localhost:9000/services/SimpleStockQuoteService"/>
        </endpoint>
        <outSequence>
            <send/>
        </outSequence>
    </target>
    <publishWSDL uri="file:repository/samples/resources/proxy/sample_proxy_1.wsdl"/>
    <parameter name="transport.jms.ContentType">
        <rules>
            <jmsProperty>contentType</jmsProperty>
            <default>application/json</default>
        </rules>
    </parameter>
</proxy>
于 2013-09-14T16:12:35.740 回答