posted 21 years ago
Hi,
I hava a durable subscriber program which is not able to receive any messages asynchronously. A new topic connection factory was defined in the jms.xml which was used instead of the default one. The server being used is Oracle9iAS (1.0.2.2.1). Following is the code for durable subscriber.
topicConnection = topicConnectionFactory.createTopicConnection();
topicConnection.setClientID("101");
topicSession = topicConnection.createTopicSession(false, Session.AUTO_ACKNOWLEDGE);
topicSubscriber = topicSession.createDurableSubscriber(topic, "SUB1");
topicConnection.stop();
topicListener = new TextListener();
topicSubscriber.setMessageListener(topicListener);
topicConnection.start();
This works fine if the subscriber is active while the publisher sent the messages but when the subscriber program is stopped and publisher is made to send the message, after restarting the subscriber program, no messages are received. Is something wrong with the code or with the orion server itself. I also tried executing the DurableSubscriberExample program given in the JMS tutorial but that also didnt work. Please let me know the solution.