Author |
Message |
Topic: Segmented Messages with JMS |
amigupta1978
Replies: 2 Views: 3871
|
Forum: IBM MQ Java / JMS Posted: Wed Nov 27, 2002 2:00 am Subject: Segmented Messages with JMS |
Hi,
JMS doesnot support segmentation, not even IBM JMS.
Moreover message transport limit is much less in JMS. We faced some problems if our message was over 4 mb.
We in our case tried two diff wa ... |
Topic: Weblogic JMS accessing MQQueues |
amigupta1978
Replies: 3 Views: 3205
|
Forum: IBM MQ Java / JMS Posted: Wed Nov 27, 2002 1:46 am Subject: Weblogic JMS accessing MQQueues |
Hi,
We had some problems if we tried to use the MQseries Queues using Weblogic JMS. We encountered some problems say if my CLASSPATH first contains the weblogic.jar and then the com.ibm.mq.jar, it wa ... |
Topic: JMS using CorrelationID and native MQSeries application |
amigupta1978
Replies: 1 Views: 5414
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Nov 27, 2002 1:42 am Subject: JMS using CorrelationID and native MQSeries application |
Hi,
MQseries stores correlationID in form of hexadecimal bytes. So best way to set the correclation id from string (in java) is to use String.getBytes() function so try setting ur msgid in JMS in byt ... |
Topic: message flow exception handling |
amigupta1978
Replies: 9 Views: 7374
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Nov 27, 2002 1:35 am Subject: message flow exception handling |
Hi,
U can use the following set of things
USe try-catch node before Compute node. Then connect Try terminal to compute node and catch terminal where u will handle the exception.
Whenever any exce ... |
Topic: unsatisfiedlinkerror shared library error in hpunix |
amigupta1978
Replies: 2 Views: 4010
|
Forum: IBM MQ API Support Posted: Fri Nov 15, 2002 1:52 am Subject: unsatisfiedlinkerror shared library error in hpunix |
Hi,
Have u specified the SHLIB_PATH correctlt in your system. It should point to the directory where that .sl file is prsesnt.
Rgds,
Amit |
Topic: JMS Publish/Subscribe and MQSI |
amigupta1978
Replies: 2 Views: 3223
|
Forum: IBM MQ Java / JMS Posted: Fri Nov 15, 2002 1:47 am Subject: JMS Publish/Subscribe and MQSI |
Hi,
Regarding your second question, I think JMS publish/subscribe should work fine with MQSI broker too. Only difference between the MQ Broker and MQSI broker is that they use different input strea ... |
Topic: Questions about Aggregate Nodes |
amigupta1978
Replies: 2 Views: 2853
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Nov 15, 2002 1:43 am Subject: Questions about Aggregate Nodes |
Hi,
Wht u wanna know abt aggregate nodes.
Aggregate node is basically for first sending n messages after receiving one message and then combining output of all the n messages to one message.
Rega ... |
Topic: Problem with PROPAGATE statement |
amigupta1978
Replies: 6 Views: 7011
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 14, 2002 2:52 am Subject: Problem with PROPAGATE statement |
Hi,
I am currently not having a ready 2.1 installtion so I cant test. But I am quite sure that Propagate worked fine.
Now U say u have made the program. Most likely there is a error there.
Ok say ... |
Topic: Problem with PROPAGATE statement |
amigupta1978
Replies: 6 Views: 7011
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Nov 13, 2002 12:22 am Subject: Problem with PROPAGATE statement |
Hi,
I have tried propogate many times. It works fine.
Message Id for all the three messages will be same until u specify in MQOUTput node to generate message ID.
Just a lil thought abt the same bod ... |
Topic: problem with TradeMark Symbol |
amigupta1978
Replies: 3 Views: 7074
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 07, 2002 10:13 pm Subject: problem with TradeMark Symbol |
Hi,
I suppose u r using the XML for message transfer. I have not used the copyright symbol in particular but I used following way to work with the special characters. In my XML declaration I set the ... |
Topic: Parent XML Tag |
amigupta1978
Replies: 3 Views: 3096
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 07, 2002 10:08 pm Subject: Parent XML Tag |
Hi,
If u r using WMQI 2.1 u can simply point the refernce to your current tag and then move that refernce to its parent to its parent and using the FIELDNAME command in MQSI u can find the name of th ... |
Topic: losing ODBC connection in WMQI |
amigupta1978
Replies: 9 Views: 7900
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Nov 07, 2002 10:05 pm Subject: losing ODBC connection in WMQI |
Hi,
We too faced this problem, our database was external DB2 systems. Since MQSI takes the connection to the databasea and when that database goes down, the connection is no more valid. In that case ... |
Topic: Errors when publishing or subscribing using JMS. |
amigupta1978
Replies: 5 Views: 6042
|
Forum: IBM MQ Java / JMS Posted: Thu Aug 29, 2002 7:48 pm Subject: Errors when publishing or subscribing using JMS. |
hi,
did u catch the base MQ exception too,,,,just try to catch that and see...
use
catch (JMSException jmsx)
{
Exception ex= jmsx.getLinkedException();
if (ex!=null) {ex.printStackTrace();} ... |
Topic: Publishing a retained publication using JMS |
amigupta1978
Replies: 7 Views: 9791
|
Forum: IBM MQ Java / JMS Posted: Thu Aug 08, 2002 9:01 pm Subject: Publishing a retained publication using JMS |
Hi,
I am not quite sure but I have seen one of the parameters in the MQRFH2 as
<psc>
<Command>Publish</Command>
<PubOpt>RetainPub</PubOpt>
<Topic>xyz</Topic ... |
Topic: accessing external oracle database from WMQI |
amigupta1978
Replies: 3 Views: 4393
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Aug 07, 2002 10:02 pm Subject: accessing external oracle database from WMQI |
Hi,
I think that Merant Driver for Oracle 8.1.7 also supports the XA transacations. NOt quite sure abt any other driver with MQSI that whether it supports XA transactions or not...
Rgds,
Amit |