Author |
Message |
Topic: JMS Message Expiration Time |
dejanb
Replies: 2 Views: 2153
|
Forum: IBM MQ Java / JMS Posted: Wed Feb 16, 2005 11:44 am Subject: JMS Message Expiration Time |
setJMSExpiration on the Message is for the JMS provider to set the message expiration (http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/jms/Message.html#setJMSExpiration(long))
Applications shou ... |
Topic: QueueConnection stop() |
dejanb
Replies: 2 Views: 1919
|
Forum: IBM MQ Java / JMS Posted: Wed Feb 09, 2005 10:12 am Subject: QueueConnection stop() |
Try to get a thread dump from the JVM and post it. There might be a deadlock between threads.
On Unix
kill -3 <pid>,
On Windows Ctrl+Break in the console window.
Dejan |
Topic: Client - Channels |
dejanb
Replies: 8 Views: 6398
|
Forum: IBM MQ Java / JMS Posted: Sat Dec 25, 2004 9:52 pm Subject: Client - Channels |
During one stay at a client site one of their MQ administrators was kind enough to look into the relationship between JMS object -> MQ channel and what he found out was that for a SRVCONN for MQ is ... |
Topic: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
dejanb
Replies: 15 Views: 8305
|
Forum: IBM MQ Java / JMS Posted: Wed Dec 22, 2004 7:09 pm Subject: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
I remember a couple of years back with the old JMS libraries having some invalid topic names and then the
TopicSession.createTopic(String) was throwing an exception when you'd pass an invalid name ... |
Topic: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
dejanb
Replies: 15 Views: 8305
|
Forum: IBM MQ Java / JMS Posted: Wed Dec 22, 2004 3:15 pm Subject: Problem solved. |
Because we allow topic names to be defined externally in XML files in three places these were defined as XXX.YYY."ZZZ.AAA" (with the double quotes) and after changing the definitions the problem went ... |
Topic: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
dejanb
Replies: 15 Views: 8305
|
Forum: IBM MQ Java / JMS Posted: Tue Dec 21, 2004 2:18 pm Subject: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
The code is spread throughout several classes is it's not easy to isolate into a small testcase but this same code is run with other JMS vendors (Weblogic and Tibco Enterprise Message Service) and we ... |
Topic: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
dejanb
Replies: 15 Views: 8305
|
Forum: IBM MQ Java / JMS Posted: Mon Dec 20, 2004 9:56 pm Subject: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
The Topic is specified when the
TopicSession.createTopic(String topicName) method is called. And this one is definitely not null.
Afterwards only the Topic object returned by the above call is ... |
Topic: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
dejanb
Replies: 15 Views: 8305
|
Forum: IBM MQ Java / JMS Posted: Mon Dec 20, 2004 3:01 pm Subject: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
It is repeatable but at one of our clients' site in Toronto and I don't have access to the MQ Server there (and they wouldn't let me).
I'll ask them for the headers but don't know if I'll get them. ... |
Topic: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
dejanb
Replies: 15 Views: 8305
|
Forum: IBM MQ Java / JMS Posted: Mon Dec 20, 2004 2:40 pm Subject: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
Here's what we do:
1. Lookup the TopicConnectionFactory from JNDI
2. Create a TopicConnection and TopicSession
3. Create a Topic and a TopicSubscriber.
4. Create an ObjectMessage (TopicSession.c ... |
Topic: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
dejanb
Replies: 15 Views: 8305
|
Forum: IBM MQ Java / JMS Posted: Fri Dec 17, 2004 12:08 pm Subject: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
Thanks for the reply.
The problems is that the application is the MQ JMS library itself. So I cannot just "fix" it.
It might be a config option of the MQConnectionFactory or it could simply be a ... |
Topic: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
dejanb
Replies: 15 Views: 8305
|
Forum: IBM MQ Java / JMS Posted: Fri Dec 17, 2004 11:01 am Subject: MQRC_RFH_STRING_ERROR Reason code 2335 using Pub/Sub JMS |
Hi,
We are getting the following exception using the Pub/Sub broker.
Broker command failed:
MQRC_RFH_STRING_ERROR Reason code 2335
com.ibm.mq.jms.BrokerCommandFailedException: Broker comm ... |