0

我正在尝试使用现有的 Mule 代码发送消息。已经编写了一些代码,但由于某种原因,据我所知,有一个轴“错误”。

使用 JMSEndpoint 然后调用“call”方法发送消息并等待响应。这是我的代码:

        String payload = eventContext.getMessage().getPayloadAsString();
        JmsConnector amqConnector = (JmsConnector) eventContext.getMuleContext().getRegistry().lookupConnector("Active_MQ");
        JMSVendorAdapter adapter = JMSVendorAdapterFactory.getJMSVendorAdapter();
        QueueConnector connector = new QueueConnector(amqConnector.getConnectionFactory(), 1, 1, 2000, 2000, 60000, true, null, null, null, adapter, null);

        Connection connection = connector.getConnectionFactory().createConnection();
        Session session = connection.createSession(false, Session.AUTO_ACKNOWLEDGE);
        Queue queue = session.createQueue("ExampleQueue");
        JMSEndpoint endpoint = connector.createEndpoint(queue);
        connector.start();

//      Byte byteMessage = new Byte(payload);
//      BytesMessage mess = session.createBytesMessage();
//      mess.writeByte(byteMessage);

        byte[] response = endpoint.call(payload.getBytes("UTF-8"), 10000);

        return response.toString();

该方法本身要求一个字节[],所以我给它一个带有UTF-8字符集的字节[]。但是它抛出了这个错误:

org.apache.axis.transport.jms.InvokeException: Error: unexpected message type received - expected BytesMessage

在 JMSConnector 类中,它在此块中失败:

BytesMessage response = null;
                try {
                    response = (BytesMessage)subscriber.receive(timeout);
                } catch (ClassCastException cce) {
                    throw new InvokeException
                            ("Error: unexpected message type received - expected BytesMessage");
                }

有一张关于这个问题的公开票,他们称之为“错误”???所以它有点抛出 ClassCastException !不敢相信这是制作的!有办法解决这个吗???那骡子是怎么做到的??

如何像 Mule 在其组件中那样将 JMS 消息发送到队列?

谢谢。

4

1 回答 1

2

Mule 使用org.mule.transport.jms.JmsMessageDispatcher将消息分派到 JMS 目的地

于 2013-08-29T23:27:55.810 回答