Author |
Message |
Topic: Connection Pools with MQ JMS |
jay_green4
Replies: 8 Views: 5506
|
Forum: IBM MQ Java / JMS Posted: Thu Jul 29, 2004 3:07 am Subject: Connection Pools with MQ JMS |
Many thanks Peter. This is the kind of information I was after.
We're running WLS 7 SP2. Has anyone else experienced this problem and know if there is a BEA SP that fixes this? |
Topic: Connection Pools with MQ JMS |
jay_green4
Replies: 8 Views: 5506
|
Forum: IBM MQ Java / JMS Posted: Tue Jul 27, 2004 5:33 am Subject: Connection Pools with MQ JMS |
Roger,
Many thanks for taking the reply to my queries.
We know how to set our bean pool values. I think my post was confusing as I just provided example values that I tested to see what was goin ... |
Topic: Connection Pools with MQ JMS |
jay_green4
Replies: 8 Views: 5506
|
Forum: IBM MQ Java / JMS Posted: Mon Jul 26, 2004 12:41 am Subject: Connection Pools with MQ JMS |
Yeah, I understand how to configure a bean's descriptor. The problem we seem to be having is that connections are being created to MQ but then not used.
I also find it a little odd that if we set ... |
Topic: Connection Pools with MQ JMS |
jay_green4
Replies: 8 Views: 5506
|
Forum: IBM MQ Java / JMS Posted: Fri Jul 23, 2004 5:34 am Subject: Connection Pools with MQ JMS |
Hi,
I'm having a problem with our application running on WLS 7 that uses JMS to read and send messages to MQ. We have a numJMSber of beans deployed that send and receive messages to MQ queues via J ... |
Topic: Setting Expiration on JMS Messages incoming to MQ |
jay_green4
Replies: 3 Views: 7718
|
Forum: IBM MQ Java / JMS Posted: Fri Jan 30, 2004 8:57 am Subject: Setting Expiration on JMS Messages incoming to MQ |
Sure. Pretty basic code :
TextMessage textMessage = session.createTextMessage(MsgText);
textMessage.setJMSCorrelationID(CorId);
textMessage.setJMSExpiration(100000);
textMessage.setJMSReplyTo(re ... |
Topic: Setting Expiration on JMS Messages incoming to MQ |
jay_green4
Replies: 3 Views: 7718
|
Forum: IBM MQ Java / JMS Posted: Fri Jan 30, 2004 2:53 am Subject: Setting Expiration on JMS Messages incoming to MQ |
Hi,
I'm having a bit of a problem setting expiration on a JMS message that I am putting on to MQ. I've read a few posts on this subject but I'm not sure there is an answer that helps me.
If I se ... |
Topic: Correlating MQ message via JMS using JMSCorrealtionId |
jay_green4
Replies: 0 Views: 1609
|
Forum: IBM MQ Java / JMS Posted: Tue Nov 11, 2003 9:39 am Subject: Correlating MQ message via JMS using JMSCorrealtionId |
Hi,
I've written a JMS application to send a message to an MQ and select it straight back off the MQ via JMS using a selector (it's just an investigation so doesn't make much sense I know!). I did ... |