Author |
Message |
Topic: WAS embedded WMQ JMS provider |
r2504
Replies: 7 Views: 6797
|
Forum: IBM MQ Java / JMS Posted: Tue Jan 24, 2006 6:40 am Subject: WAS embedded WMQ JMS provider |
I now replaced the com.ibm.mq.jar and com.ibm.mqjms.jar of the WAS 6 test server in RSA... but I still have the samen problem
I had the impression that I did it (using a Citrix environment, ... |
Topic: WAS embedded WMQ JMS provider |
r2504
Replies: 7 Views: 6797
|
Forum: IBM MQ Java / JMS Posted: Mon Jan 23, 2006 10:04 am Subject: WAS embedded WMQ JMS provider |
I checked the forum for 2009 messages, and found the thread about mismatches in CSD levels, hence I looked at the CSD of the iSeries which is V5R3 CSD11... and the one included in Rational Software Ar ... |
Topic: WAS embedded WMQ JMS provider |
r2504
Replies: 7 Views: 6797
|
Forum: IBM MQ Java / JMS Posted: Sun Jan 22, 2006 6:29 am Subject: WAS embedded WMQ JMS provider |
If you do not have the actual client jars in your classpath the connection will always fail. Embedded WAS cannot communicate outside WAS (feature).
Apart from that I'm not happy with this (when WAS ... |
Topic: WAS embedded WMQ JMS provider |
r2504
Replies: 7 Views: 6797
|
Forum: IBM MQ Java / JMS Posted: Sat Jan 21, 2006 7:18 am Subject: WAS embedded WMQ JMS provider |
To a queuemanager outside of WAS... and when I debug my servlet, I see that the actual connection is established with my queuemanager, but the send itself fails. |
Topic: WAS embedded WMQ JMS provider |
r2504
Replies: 7 Views: 6797
|
Forum: IBM MQ Java / JMS Posted: Fri Jan 20, 2006 6:51 am Subject: WAS embedded WMQ JMS provider |
I'm trying to get a servlet to send a message via JMS and the build in Websphere MQ JMS provider in my WAS (actually a development environment in Rational Software Architect).
The problem is when I ... |
Topic: MQJMS2007 / mqrc: 2009 -error from .send(), but msg in Q |
r2504
Replies: 18 Views: 61624
|
Forum: IBM MQ Java / JMS Posted: Fri Jan 20, 2006 6:40 am Subject: MQJMS2007 / mqrc: 2009 -error from .send(), but msg in Q |
Also check if the CCSID is specified. I also got a 2009 and after specifying the CCSID everything worked fine. |
Topic: Failure on DLTMQMQ |
r2504
Replies: 3 Views: 7194
|
Forum: General IBM MQ Support Posted: Mon Jun 06, 2005 7:10 am Subject: Failure on DLTMQMQ |
Mmm... in the queuemanager specific log, I see
-------------------------------------------------------------------------------
06/06/05 09:40:10 ... |
Topic: Failure on DLTMQMQ |
r2504
Replies: 3 Views: 7194
|
Forum: General IBM MQ Support Posted: Mon Jun 06, 2005 6:57 am Subject: Failure on DLTMQMQ |
Don't know if this is enough... (it might also contains info of our attempt to stop and restart MQ which wasn't that easy neither).
Job Name :- 900984/QMQM/AMQRRMFA
Job Description ... |
Topic: Failure on DLTMQMQ |
r2504
Replies: 3 Views: 7194
|
Forum: General IBM MQ Support Posted: Mon Jun 06, 2005 12:14 am Subject: Failure on DLTMQMQ |
When trying to delete a queue via DLTMQMQ, my job gets locked and one of the AMQZLAA0 jobs is dumping. This happens on an iSeries running V5R1, with MQ V5R3.
Has anyone seen this before... is this ... |
Topic: UTFDataFormatException on get |
r2504
Replies: 7 Views: 6122
|
Forum: IBM MQ Java / JMS Posted: Wed May 25, 2005 9:53 am Subject: UTFDataFormatException on get |
If you aren't specifying the length, then you should avoid using the readUTF method since it is expecting the data in the format of length|data. This is probably causing your DataFormatException.
... |
Topic: UTFDataFormatException on get |
r2504
Replies: 7 Views: 6122
|
Forum: IBM MQ Java / JMS Posted: Wed May 25, 2005 7:05 am Subject: UTFDataFormatException on get |
The code that puts the message on the queue is RPG code (runs on iSeries). Basically it sets MDCSI to 1208 and MDFMT to FMSTR and the buffer to the actual UTF-8 data (no prefix of length). |
Topic: UTFDataFormatException on get |
r2504
Replies: 7 Views: 6122
|
Forum: IBM MQ Java / JMS Posted: Wed May 25, 2005 3:04 am Subject: UTFDataFormatException on get |
I solved this now by forcing a conversion to 1252 (Windows) ...
MQMessage message = new MQMessage();
message.characterSet = 1252;
MQGetMessageOptions gmo = new MQGetMessageOptions( ... |
Topic: UTFDataFormatException on get |
r2504
Replies: 7 Views: 6122
|
Forum: IBM MQ Java / JMS Posted: Wed May 25, 2005 12:47 am Subject: UTFDataFormatException on get |
No JMS... just plain MQ base Java programs.
Following is the piece of code...
MQMessage message = new MQMessage();
message.characterSet = 1208;
MQGetMessageOptions gmo = new MQGetMessa ... |
Topic: UTFDataFormatException on get |
r2504
Replies: 7 Views: 6122
|
Forum: IBM MQ Java / JMS Posted: Wed May 25, 2005 12:12 am Subject: UTFDataFormatException on get |
Hi,
I have a message in a queue which is tagged as MQSTR, CCSID 1208 (UTF8) encoding 273. The test message contains "Héllo world." and shows correctly when looking at it via Websphere Explorer.
... |
Topic: no mqjbnd05 in java.library.path error on XP |
r2504
Replies: 24 Views: 43926
|
Forum: IBM MQ Java / JMS Posted: Mon Mar 08, 2004 11:46 pm Subject: no mqjbnd05 in java.library.path error on XP |
Directories can be abbreviated by their first 7 characters followed by a tilde (the Spanish character) and a sequence number.
"Program files" can be replaced by "Progra~1" |