Author |
Message |
Topic: MQJMS2007 error on RAD |
kiranraj
Replies: 3 Views: 4584
|
Forum: IBM MQ Java / JMS Posted: Thu Aug 16, 2007 11:15 pm Subject: MQJMS2007 on RAD 6.0.1.1 with MQ 6.0 |
After upgrading the WTE 6.0.0.0(that comes inbuilt with RAD) to WTE 6.0.2.13, the same code started working.
So , upgrade the WTE to 6.0.2.13 to let the MQ JMS calls work in RAD 6.0.1.1
-Cheers |
Topic: MQJMS2007 error on RAD |
kiranraj
Replies: 3 Views: 4584
|
Forum: IBM MQ Java / JMS Posted: Mon Aug 06, 2007 9:55 pm Subject: MQJMS2007 error on RAD |
The same code works in WSAD Any idea if RAD needs upgrade or anything? |
Topic: MQJMS2007 error on RAD |
kiranraj
Replies: 3 Views: 4584
|
Forum: IBM MQ Java / JMS Posted: Mon Aug 06, 2007 8:22 am Subject: MQJMS2007 error on RAD |
Hi,
I get the following error when I tried to put a JMS message on the MQ queue manager.
I am using RAD 6.0.1.1 and MQ 6.0 on another machine.
The code snippet:
String replyQueueConnF ... |
Topic: Creating Queues and Channels using SCRIPT |
kiranraj
Replies: 8 Views: 4961
|
Forum: IBM MQ Installation/Configuration Support Posted: Tue Mar 28, 2006 4:00 am Subject: Creating Queues and Channels using SCRIPT |
Thanks a lot. The SUPPORTPAC worked. |
Topic: Creating Queues and Channels using SCRIPT |
kiranraj
Replies: 8 Views: 4961
|
Forum: IBM MQ Installation/Configuration Support Posted: Tue Mar 28, 2006 3:17 am Subject: Creating Queues and Channels using SCRIPT |
Hi,
I have a MQ server machine on which several queue managers, channels, queues are created. I wish to create an exact set up on another machine. How can i do it ? Can SCRIPT help in this case.
... |
Topic: MQJE011: Socket connection attempt refused |
kiranraj
Replies: 12 Views: 12120
|
Forum: IBM MQ Java / JMS Posted: Mon Mar 20, 2006 9:50 pm Subject: MQJE011: Socket connection attempt refused |
Thanks a lot for the help. There was an ip clash in our network and hence the request didnt reach the server. Now its solved. Thanks again. |
Topic: MQJE011: Socket connection attempt refused |
kiranraj
Replies: 12 Views: 12120
|
Forum: IBM MQ Java / JMS Posted: Thu Mar 16, 2006 4:52 am Subject: Code snippet |
Hi,
The actual code looks like:
connectionFactoryJNDIname = connectionfactory;
QueueConnectionFactory queueConFactory = JMSUtil.getConnectionFactory(connectionFactoryJNDIname);
queueCon = queue ... |
Topic: MQJE011: Socket connection attempt refused |
kiranraj
Replies: 12 Views: 12120
|
Forum: IBM MQ Java / JMS Posted: Thu Mar 16, 2006 4:35 am Subject: Listener code |
The code in the listener class is:
String myQmgr = SE_PUNAPPL;
String myQname = WCQ;
MQEnvironment.properties.put(MQC.TRANSPORT_PROPERTY,MQC.TRANSPORT_MQSERIES);
sendQmgr = new MQQueueManager(my ... |
Topic: MQJE011: Socket connection attempt refused |
kiranraj
Replies: 12 Views: 12120
|
Forum: IBM MQ Java / JMS Posted: Thu Mar 16, 2006 3:41 am Subject: MQJE011: Socket connection attempt refused |
Hi All,
When i try to connect to MQ from my WSAD(on another machine), i get the following exception.
How do i know if the request reached the MQ machine. I dont see any traces in the MQ server logs ... |
Topic: Dead letter queue |
kiranraj
Replies: 5 Views: 2812
|
Forum: General IBM MQ Support Posted: Thu Oct 06, 2005 6:15 am Subject: Dead letter queue |
Hi,
I dont want to have the messages lying on my queue forever. After expiry, the messages lie on the queue although they cant be retrieved. I want to clear these messages periodically or at a parti ... |
Topic: Dead letter queue |
kiranraj
Replies: 5 Views: 2812
|
Forum: General IBM MQ Support Posted: Thu Oct 06, 2005 3:27 am Subject: Dead letter queue |
Hi,
If I wait for a synchronous response on the queue and if i get the response asynchronously, the message stays on the queue. Can I direct the lying message to the dead letter queue automatically? ... |
Topic: BUFFER_LENGTH in the MQPUT API |
kiranraj
Replies: 1 Views: 1831
|
Forum: General IBM MQ Support Posted: Mon Sep 19, 2005 11:47 pm Subject: BUFFER_LENGTH in the MQPUT API |
Hi,
I am sending a request via MQ(in Java). If I need to form the MQ Header, can I do it this way ?
mess = new MQMessage( );
//Version
mess.setVersion(1);
//Report
mess ... |