Author |
Message |
Topic: Is there a limitation on MDB no on jBoss |
BenR
Replies: 7 Views: 4986
|
Forum: IBM MQ Java / JMS Posted: Sun May 13, 2007 11:08 pm Subject: Is there a limitation on MDB no on jBoss |
How are you using WMQ in JBoss? |
Topic: How to send and retrieve WebSphere MQ message from servlet |
BenR
Replies: 6 Views: 6924
|
Forum: IBM MQ Java / JMS Posted: Sun May 06, 2007 10:51 pm Subject: How to send and retrieve WebSphere MQ message from servlet |
The base Java API does not comply with the J2EE specification, so it's not appropriate to use it in that environment. |
Topic: AMQ7047 with dspmqver after install of 6.0 |
BenR
Replies: 7 Views: 10557
|
Forum: IBM MQ Installation/Configuration Support Posted: Wed May 02, 2007 10:16 pm Subject: AMQ7047 with dspmqver after install of 6.0 |
Do you have any FDCs? If you can post it here (just the top bit) i'll tell you what failed, but threading is a common cause of these problems, see comments here
http://www-1.ibm.com/support/docview ... |
Topic: MQJMS1112 |
BenR
Replies: 3 Views: 6844
|
Forum: IBM MQ Java / JMS Posted: Wed May 02, 2007 4:27 am Subject: MQJMS1112 |
You are either making pub/sub calls on a queue connection factory, or you accidentally defined a topic connection factory and are trying to make point-to-point calls on it. |
Topic: Installing MQ in Ubuntu 7.04 |
BenR
Replies: 7 Views: 12426
|
Forum: IBM MQ Installation/Configuration Support Posted: Tue May 01, 2007 10:34 pm Subject: Installing MQ in Ubuntu 7.04 |
Is Ubuntu a supported platform?
I suspect the question is rhetorical, but no.
http://www-1.ibm.com/support/docview.wss?uid=swg27006270 |
Topic: Unable to Conenct to QMGR with SSL enabled |
BenR
Replies: 7 Views: 9404
|
Forum: IBM MQ Java / JMS Posted: Wed Apr 25, 2007 10:53 pm Subject: Unable to Conenct to QMGR with SSL enabled |
Have you tried this
http://www-128.ibm.com/developerworks/websphere/library/techarticles/0510_fehners/0510_fehners.html |
Topic: MQJE001: An MQException occurred: Completion Code 2, Reason |
BenR
Replies: 12 Views: 36609
|
Forum: IBM MQ Java / JMS Posted: Thu Apr 19, 2007 2:36 am Subject: MQJE001: An MQException occurred: Completion Code 2, Reason |
The 'correct' JMS way to do this
queue = new MQQueue();
queue.setBaseQueueName("C003.INPUT.QUEUE");
is
javax.jms.Queue queue = qSession.createQueue("C003.INPUT.QUEUE&q ... |
Topic: Uncommitted ghost messages with java XA in bindings mode |
BenR
Replies: 10 Views: 8388
|
Forum: General IBM MQ Support Posted: Wed Apr 18, 2007 1:40 am Subject: Uncommitted ghost messages with java XA in bindings mode |
Hi Richard
JCA was shipped with WMQ 6.0.2.1, but will talk to a 5.3 queue manager in client mode. Of course, you would need the transactional client to do XA in this case.
The list of supporte ... |
Topic: Uncommitted ghost messages with java XA in bindings mode |
BenR
Replies: 10 Views: 8388
|
Forum: General IBM MQ Support Posted: Tue Apr 17, 2007 10:54 pm Subject: Uncommitted ghost messages with java XA in bindings mode |
I would be very cautious about any conclusions you get from your testing - you will get no guarantees that MQXAQueueManager methods will necessarily (a) work or (b) function in the same way as publish ... |
Topic: Uncommitted ghost messages with java XA in bindings mode |
BenR
Replies: 10 Views: 8388
|
Forum: General IBM MQ Support Posted: Tue Apr 17, 2007 8:15 am Subject: Uncommitted ghost messages with java XA in bindings mode |
I still think that this bit
MQXAQueueManager xaQMrg = new MQXAQueueManager("qmSBL4323");
MQXAResource xaRes = xaQMrg.getXAResource();
Xid xid = new MyXid(123456, "1234".getB ... |
Topic: put between XAResource start and end not part of XA transctn |
BenR
Replies: 4 Views: 3727
|
Forum: General IBM MQ Support Posted: Mon Apr 16, 2007 10:47 pm Subject: put between XAResource start and end not part of XA transctn |
I'm pretty sure that this
MQXAQueueManager xaQMrg = new MQXAQueueManager("", properties);
is not a published API, so you should not be calling it from an application. It might happ ... |
Topic: java.lang.ClassCastException: com.ibm.jms.JMSBytesMessage |
BenR
Replies: 2 Views: 9177
|
Forum: IBM MQ Java / JMS Posted: Thu Apr 05, 2007 3:04 am Subject: java.lang.ClassCastException: com.ibm.jms.JMSBytesMessage |
The ClassCastException is telling you that you received a BytesMessage, but you're trying to cast it to a TextMessage - you can't do that. Is another application putting messages to the same queue? |
Topic: XA transaction from JAVA.? |
BenR
Replies: 6 Views: 8452
|
Forum: IBM MQ Java / JMS Posted: Mon Apr 02, 2007 2:45 am Subject: XA transaction from JAVA.? |
[url=http://www-1.ibm.com/support/docview.wss?rs=171&context=SSFKSJ&dc=DA400&uid=swg27009524&loc=en_US&cs=UTF-8&lang=en&rss=ct171websphere]This link is probably the most re ... |
Topic: XA transaction from JAVA.? |
BenR
Replies: 6 Views: 8452
|
Forum: IBM MQ Java / JMS Posted: Mon Apr 02, 2007 2:37 am Subject: XA transaction from JAVA.? |
From base Java, none of the above
With JMS it was WAS and WebLogic, as of last friday it's a bit different. |
Topic: XA transaction from JAVA.? |
BenR
Replies: 6 Views: 8452
|
Forum: IBM MQ Java / JMS Posted: Mon Apr 02, 2007 2:03 am Subject: XA transaction from JAVA.? |
The base Java classes allow WMQ to be transaction manager for an XA transaction involving WMQ and a supported database. For example, you could write code to consume a message and update a database tab ... |