Author |
Message |
Topic: Problem with hashCode() on MQTopic and MQQueue |
Cyrille Le Clerc
Replies: 6 Views: 9299
|
Forum: IBM MQ Java / JMS Posted: Thu Jul 08, 2010 1:42 am Subject: Problem with hashCode() on MQTopic and MQQueue |
Thanks so much!
This is the solution to my problem .
Cyrille |
Topic: Problem with hashCode() on MQTopic and MQQueue |
Cyrille Le Clerc
Replies: 6 Views: 9299
|
Forum: IBM MQ Java / JMS Posted: Wed Jul 07, 2010 2:05 am Subject: Problem with hashCode() on MQTopic and MQQueue |
Hello Jeff,
I share your expectation to not have the same object instance returned by session.crerateQueue(name) and thus I don't expect to have session.createQueue("test_queue") == sess ... |
Topic: Problem with hashCode() on MQTopic and MQQueue |
Cyrille Le Clerc
Replies: 6 Views: 9299
|
Forum: IBM MQ Java / JMS Posted: Wed Jul 07, 2010 12:08 am Subject: Problem with hashCode() on MQTopic and MQQueue |
Hello FJB,
I was not clear enough, "Assert.assertEquals(expected, actual)" comes from JUnit and thus properly uses the "equals()" method rather than "==" .
As defin ... |
Topic: Problem with hashCode() on MQTopic and MQQueue |
Cyrille Le Clerc
Replies: 6 Views: 9299
|
Forum: IBM MQ Java / JMS Posted: Tue Jul 06, 2010 6:45 am Subject: Problem with hashCode() on MQTopic and MQQueue |
Dear all,
I wanted to share with you a contact admin bug I faced : I got a MessageProducer leak in Spring Framework's CachingConnectionFactory with WMQ 7.0.1 jms connector because the hashCode() methods ... |
Topic: Clustered jms sub to a topic : 2429 MQRC_SUBSCRIPTION_IN_USE |
Cyrille Le Clerc
Replies: 0 Views: 3325
|
Forum: IBM MQ Java / JMS Posted: Tue Jun 15, 2010 1:07 am Subject: Clustered jms sub to a topic : 2429 MQRC_SUBSCRIPTION_IN_USE |
Dear all,
Environment : WMQ 7.0.1 on Linux
I would like a clustered java application to durably subscribe to a MQ 7.0 topic via JMS.
To rephrase, I want each pub/sub message to be received e ... |
Topic: XML in JMSTextMessage or JMSBytesMessage |
Cyrille Le Clerc
Replies: 13 Views: 36596
|
Forum: IBM MQ Java / JMS Posted: Sun Nov 11, 2007 9:13 am Subject: Ongoing spec : SOAP over Java Message Service 1.0 RC1 |
I just found this plain old XML and SOAP messages do NOT handle binary data in the same way : plain old XML messages use xsd:base64Binary or xsd:hexBinary types to hold the binary data in the XML tree ... |
Topic: XML in JMSTextMessage or JMSBytesMessage |
Cyrille Le Clerc
Replies: 13 Views: 36596
|
Forum: IBM MQ Java / JMS Posted: Thu Nov 08, 2007 10:01 am Subject: XML in JMSTextMessage or JMSBytesMessage |
Sonic MQ's XMLMessage is a nice direction to ease XML usage with JMS and Sonic Software should have a chair at the
/**
* JMS {@link Message} with support for XML {@link Source} ... |
Topic: XML in JMSTextMessage or JMSBytesMessage |
Cyrille Le Clerc
Replies: 13 Views: 36596
|
Forum: IBM MQ Java / JMS Posted: Wed Nov 07, 2007 10:20 am Subject: XML in JMSTextMessage or JMSBytesMessage |
Hello,
I did a small shortcut on my apporach :
My preferred solution to send XML messages over JMS is to drive the XML encoding from the Queue's CCSID : the MQ admins specify specify the CCSID ... |
Topic: XML in JMSTextMessage or JMSBytesMessage |
Cyrille Le Clerc
Replies: 13 Views: 36596
|
Forum: IBM MQ Java / JMS Posted: Tue Nov 06, 2007 10:28 am Subject: JMS Message types used by JMS transports of SOAP libraries |
Hello,
Here is a short review of the JMS Message types used by leading Java JAXWS (ie SOAP) implementations for their JMS Transport :
* [url=https://jax-ws.dev.java.net/]JAXWS-RI (aka JAXWS Refe ... |
Topic: XML in JMSTextMessage or JMSBytesMessage |
Cyrille Le Clerc
Replies: 13 Views: 36596
|
Forum: IBM MQ Java / JMS Posted: Mon Nov 05, 2007 2:12 am Subject: XML in JMSTextMessage or JMSBytesMessage |
The A TextMessage object's message body contains a java.lang.String object. This message type can be used to transport plain-text messages, and XML messages.
However, it is a bit paradoxical becaus ... |
Topic: Mutliple Queue consumers |
Cyrille Le Clerc
Replies: 6 Views: 5110
|
Forum: IBM MQ Java / JMS Posted: Wed May 23, 2007 7:54 am Subject: Re: Mutliple Queue consumers |
Hello athresh,
Just to check, what is the isolation level of these consumers ?
Do these consumers share the same Virtual Machine ? The same JMS Connection Factory ? The same JMS connection ? Th ... |
Topic: How to set MQPMO and MQGMO options if using JMS |
Cyrille Le Clerc
Replies: 4 Views: 8409
|
Forum: IBM MQ Java / JMS Posted: Wed May 23, 2007 2:51 am Subject: Re: How to set MQPMO and MQGMO options if using JMS |
Hello mqjl,
Here are the MQ native to JMS mappings :
MQPMO_FAIL_IF_QUIESCING : see MQConnectionFactory.setFailIfQuiesce(int) with JMSC.MQJMS_FIQ_YES (default) and JMSC.MQJMS_FIQ_NO.
MQPMO_SYN ... |