issue 2
(Setting MQMD.ReplyToQ) commented on by 4integration
- A thing that came to my mind..
When a JMS message is created and sets i.e. JMSReplyTo, what component will set/map
to MQMD.ReplyToQ ? Is it WMQmgr or JMS-MQ API? If it's JMS-MQ API I suspect that we
need to explicit set:
message.replyToQueueName = "TEST.QUEUE";
since we in this are using WMQ Java Client API instead of JMS API.
Any idea?
Regards
Joacim
A thing that came to my mind..
When a JMS message is created and sets i.e. JMSReplyTo, what component will set/map
to MQMD.ReplyToQ ? Is it WMQmgr or JMS-MQ API? If it's JMS-MQ API I suspect that we
need to explicit set:
message.replyToQueueName = "TEST.QUEUE";
since we in this are using WMQ Java Client API instead of JMS API.
Any idea?
Regards
Joacim
Dec 02, 2008
issue 2
(Setting MQMD.ReplyToQ) reported by 4integration
- Hello,
We want to use wmq-util but have problems getting MQMD.ReplyToQ set but
maybe we are missing something, or?!
Source snippet:
-------------------------------
MQMessage message = new MQMessage();
MQRFH2 rfh2 = new MQRFH2();
rfh2.setVersion(2);
rfh2.setFormat("MQSTR ");
rfh2.setNameValueCodedCharSetId(1208);
JmsArea jms = new JmsArea();
jms.setReplyTo("queue:///TEST.QUEUE");
rfh2.addArea(jms);
McdArea mcd = new McdArea();
mcd.setMessageType("jms_text");
rfh2.addArea(mcd);
rfh2.toMessage(message);
message.writeUTF("Hello World!");
-------------------------------
Best Regards
Joacim Järkeborn
Hello,
We want to use wmq-util but have problems getting MQMD.ReplyToQ set but
maybe we are missing something, or?!
Source snippet:
-------------------------------
MQMessage message = new MQMessage();
MQRFH2 rfh2 = new MQRFH2();
rfh2.setVersion(2);
rfh2.setFormat("MQSTR ");
rfh2.setNameValueCodedCharSetId(1208);
JmsArea jms = new JmsArea();
jms.setReplyTo("queue:///TEST.QUEUE");
rfh2.addArea(jms);
McdArea mcd = new McdArea();
mcd.setMessageType("jms_text");
rfh2.addArea(mcd);
rfh2.toMessage(message);
message.writeUTF("Hello World!");
-------------------------------
Best Regards
Joacim Järkeborn
Dec 02, 2008
issue 1
(Released version) reported by 4integration
- Hello,
When will you publish a released version of wmq-util
Best Regards
Joacim Järkeborn
Hello,
When will you publish a released version of wmq-util
Best Regards
Joacim Järkeborn
Aug 22, 2008
r38
(Deleted bin folder) committed by johannescarlen
- Deleted bin folder