2

我正在尝试开发与 C++ 和 Java 之间的 JMS 通信的应用程序。

我有一个带有 Java 代理的“服务器”,我想连接一个 c++ 发布者/列表者

我该怎么做?

我的 Java 类是:

“服务器”:

public class Queue {

private static ActiveMQConnectionFactory connectionFactory;
private static Destination destination;
private static boolean transacted = false;
private static Session session;
private static  Connection connection;

public static void main(String[] args) throws Exception {
    BrokerService broker = new BrokerService();
    broker.setUseJmx(true);
    broker.addConnector("tcp://localhost:61616");
    broker.start();
    Producer p=new Producer();
    Consumer c= new Consumer();
    connectionFactory = new ActiveMQConnectionFactory(
            ActiveMQConnection.DEFAULT_USER,
            ActiveMQConnection.DEFAULT_PASSWORD,
            ActiveMQConnection.DEFAULT_BROKER_URL);
    connection = connectionFactory.createConnection();
    connection.start();
    session = connection
            .createSession(transacted, Session.AUTO_ACKNOWLEDGE);
    destination = session.createQueue("queue"); 
    c.createConsumerAndReceiveAMessage(connection, connectionFactory,session,destination );
    p.createProducerAndSendAMessage(destination,session);
    broker.stop();  
}   

制片人

public class Producer {
void createProducerAndSendAMessage(Destination destination,
        Session session) throws JMSException {

    MessageProducer producer = session.createProducer(destination);
    producer.setDeliveryMode(DeliveryMode.NON_PERSISTENT);
    Scanner sc=new Scanner(System.in);
    String msg;
    while(!(msg=sc.nextLine()).equals("exit") ){
        TextMessage message = session.createTextMessage(msg);
        System.out.println("Sending message " + message.getText());
        producer.send(message);
    }
}

消费者:

public class Consumer {
public void createConsumerAndReceiveAMessage(Connection connection,
        ActiveMQConnectionFactory connectionFactory, Session session,
        Destination destination) throws JMSException, InterruptedException {

    connection = connectionFactory.createConnection();
    connection.start();
    MessageConsumer consumer = session.createConsumer(destination);
    MyConsumer myConsumer = new MyConsumer();
    connection.setExceptionListener(myConsumer);
    consumer.setMessageListener(myConsumer);
}
private static class MyConsumer implements MessageListener,
        ExceptionListener {
    synchronized public void onException(JMSException ex) {
        System.out.println("JMS Exception occured.  Shutting down client.");
        System.exit(1);
    }
    public void onMessage(Message message) {
        if (message instanceof TextMessage) {
            TextMessage textMessage = (TextMessage) message;
            try {
                System.out.println("Received message "
                        + textMessage.getText());
            } catch (JMSException ex) {
                System.out.println("Error reading message " + ex);
            }
        } else {
            System.out.println("Received " + message);
        }
    }
}

问候

4

1 回答 1

1

你看过ActiveMQ-CPP吗?这是 ActiveMQ C++ 客户端,在项目的主页上有文档、示例和教程。

于 2012-09-21T12:29:13.907 回答