Author |
Message |
Topic: JMS client recieving reply from non-JMS producer |
ndengland
Replies: 14 Views: 11534
|
Forum: IBM MQ Java / JMS Posted: Mon Aug 03, 2009 6:35 am Subject: JMS client recieving reply from non-JMS producer |
Also, to get it to work correctly I had to make sure, in the WAS admin console on the queue destination settings: my "target client" for my reply queue had to be set to "JMS" when ... |
Topic: JMS client recieving reply from non-JMS producer |
ndengland
Replies: 14 Views: 11534
|
Forum: IBM MQ Java / JMS Posted: Wed Jul 29, 2009 7:13 am Subject: JMS client recieving reply from non-JMS producer |
Thanks for all the help, I was able to send a request from JMS client to non-JMS and receive the reply based on the correlid.
Just missing that one line of code! |
Topic: JMS client recieving reply from non-JMS producer |
ndengland
Replies: 14 Views: 11534
|
Forum: IBM MQ Java / JMS Posted: Tue Jul 28, 2009 1:21 pm Subject: JMS client recieving reply from non-JMS producer |
Oh thank you SO much!!! That looks like it did the trick, my EJB successfully read a message off of the queue.
Thanks a ton for the help. My next step is to do a selective get from the queue to g ... |
Topic: JMS client recieving reply from non-JMS producer |
ndengland
Replies: 14 Views: 11534
|
Forum: IBM MQ Java / JMS Posted: Tue Jul 28, 2009 12:14 pm Subject: JMS client recieving reply from non-JMS producer |
OK, I'm a bit confused.
I'm using javax.jms.MessageConsumer, which I can find no start() method for it.
Is there another API I should be using? |
Topic: JMS client recieving reply from non-JMS producer |
ndengland
Replies: 14 Views: 11534
|
Forum: IBM MQ Java / JMS Posted: Tue Jul 28, 2009 10:06 am Subject: JMS client recieving reply from non-JMS producer |
Here is a code snippet of the lookups/connections:
initContext = new InitialContext();
factory = (ConnectionFactory) initContext.lookup(connectionFactoryJNDIName);
r ... |
Topic: JMS client recieving reply from non-JMS producer |
ndengland
Replies: 14 Views: 11534
|
Forum: IBM MQ Java / JMS Posted: Tue Jul 28, 2009 7:43 am Subject: JMS client recieving reply from non-JMS producer |
Hello,
I have a JMS client (a session EJB) which is running on WAS and putting a request message on an MQ queue. The consumer reading the request is a non JMS client. I have successfully been abl ... |