Author |
Message |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Wed Aug 17, 2005 9:15 am Subject: MQSeries Issue/ Generic RA for JMS |
If you are not happy with the service you are receiving on your PMR, you can ask the "Duty Manager" to get involved.
I can't help on this issue, sorry.
Oh! no.. Actually they are givng a good se ... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Wed Aug 17, 2005 8:04 am Subject: MQSeries Issue/ Generic RA for JMS |
Probably, you need to open a PMR with IBM.
It may help to try the same code on a different platform, and confirm that it is not a linux-specific issue.
I have one opened already. That is taking ... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Wed Aug 17, 2005 5:43 am Subject: MQSeries Issue/ Generic RA for JMS |
It wasn't clear who the TM was - to me.
It seems to be the call into the resource manager component of MQ that is hanging? Under what you think is a normal situation?
?
That is correct. The X ... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Wed Aug 17, 2005 3:52 am Subject: MQSeries Issue/ Generic RA for JMS |
I think he is trying to write the RA that the JMS API will use under the covers.
I can't help with this though.
Sure but the RA needs only to supply an XAResource to the WAS TM.
Now the XAResou ... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Wed Aug 17, 2005 3:50 am Subject: MQSeries Issue/ Generic RA for JMS |
You're on linux, and trying to use MQ as the TM?
I remember some recent posts from wschutz... somewhere here... where he indicated that he thought this was not currently supported.
Also, you are ... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Tue Aug 16, 2005 11:04 am Subject: MQSeries Issue/ Generic RA for JMS |
The transaction manager is J2EE and will provide you with the current transaction....
The current transaction has a specific transaction interface:
commit()
delistResource(XARes res, int flag)
enl ... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Mon Aug 15, 2005 8:16 pm Subject: MQSeries Issue/ Generic RA for JMS |
So If you displayed the code of the TM and you are not writing the TM what code are you using to get to this situation ?
Please see my original post::
I wrote a resource adapter that sit in b ... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Sun Aug 14, 2005 6:59 pm Subject: MQSeries Issue/ Generic RA for JMS |
Dear friend,
Please read carefullly.
The exclamation mark is not requred. Please see the explanation of TMNOFLAGS and TMJOIN below. Both are from XAResource.start() perspective.
TMNOFLAGS: W ... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Sat Aug 13, 2005 6:09 pm Subject: MQSeries Issue/ Generic RA for JMS |
Are you trying to write the XA transaction manager or just use it ?
if (xar2.isSameRM(xar1)) {
xar2.start(xid, XAResource.TMJOIN) // HANGGGGGGGGG
}
So if bot ... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Fri Aug 12, 2005 12:38 am Subject: MQSeries Issue/ Generic RA for JMS |
Yes, RA is a wrapper above JMS implementation.
However It does not use the same QueueSession undercovers. It should not.
Both MDB deployment descriptor and outbound connection pool configuratio ... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Wed Aug 10, 2005 8:14 pm Subject: MQSeries Issue/ Generic RA for JMS |
Have you read up on the JCA specification and the way it is supposed to work? (see Sun site).
Use common sense...
I am/was the implementation lead for JCA 1.5 spec in Sun's J2EE team. So, ... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Tue Aug 09, 2005 11:08 pm Subject: MQSeries Issue/ Generic RA for JMS |
PLEASE HELP.... |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Mon Aug 08, 2005 7:48 pm Subject: MQSeries Issue/ Generic RA for JMS |
When there are two resources, you need XA. When I have only one resource (remove sending reply to reply queue), then things start working.
Also, instead of sending reply to MQ series, if I direct ... |
Topic: XA Resource error |
binod
Replies: 3 Views: 2816
|
Forum: IBM MQ Installation/Configuration Support Posted: Mon Aug 08, 2005 6:33 am Subject: XA Resource error |
I have seen this error as a consequence of some other earler error. May be you can restart your queue manager, listener etc and try again. May be you will get the actual error. |
Topic: MQSeries Issue/ Generic RA for JMS |
binod
Replies: 34 Views: 17626
|
Forum: IBM MQ Java / JMS Posted: Mon Aug 08, 2005 6:16 am Subject: MQSeries Issue/ Generic RA for JMS |
Thanks for the reply.
There are two XAResources objects taking part in the transaction. One for the inbound message and other for the outbound message. Since isSameRM for both these resources retu ... |