Author |
Message |
Topic: Java Plug-in Node Problem |
rwa
Replies: 3 Views: 4868
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 28, 2003 1:58 am Subject: Java Plug-in Node Problem |
Hi Jax,
as already said, a new message has to be constructed from an existing message. This is already done with newMsg.
So replace the line "MbMessage outMsg = new MbMessage(msgOut);" with (asu ... |
Topic: Need to implement synchronous call to mq |
rwa
Replies: 1 Views: 3031
|
Forum: IBM MQ Java / JMS Posted: Tue Oct 21, 2003 12:06 am Subject: Need to implement synchronous call to mq |
Hi Rehan,
first of all, MQseries uses asychronous communication. Therefore you have to "bind" two transactions together.
One approch is request/reply. In the request transaction (... send the post ... |
Topic: Pub/Sub support in a clustered environment |
rwa
Replies: 9 Views: 8817
|
Forum: Clustering Posted: Mon Oct 20, 2003 6:57 am Subject: Pub/Sub support in a clustered environment |
Hi Rahaman,
the MA0C pub/sub functions are implemented in a broker service. A broker domain is two or more brokers connected to each other to transfer publications and configurations between the br ... |
Topic: save messageID to databse |
rwa
Replies: 4 Views: 4667
|
Forum: IBM MQ API Support Posted: Mon Oct 20, 2003 6:32 am Subject: save messageID to databse |
Just to complete my picture (I do not know VisualBasic),
is it possible decode string into the binary format?
How does this encoding work? This would be helpful if the database should be read wi ... |
Topic: save messageID to databse |
rwa
Replies: 4 Views: 4667
|
Forum: IBM MQ API Support Posted: Mon Oct 20, 2003 3:50 am Subject: save messageID to databse |
Hi cocolua,
the field MsgID has the format MQBYTE24. This field should be copied into a binary/blob field of a database. A MsgID field cannot be converted into a string field.
With microsoft sql ... |
Topic: while amqsputc can do, vb sample cant do |
rwa
Replies: 1 Views: 3049
|
Forum: IBM MQ API Support Posted: Mon Oct 20, 2003 1:08 am Subject: while amqsputc can do, vb sample cant do |
Hi pepine,
error code 2058 points to a configuration problem in your case asuming that the vb sample program uses the correct queue manager name. Also a listener has to run for the queue manager.
... |
Topic: insufficient authority error.. |
rwa
Replies: 1 Views: 3143
|
Forum: Clustering Posted: Mon Oct 20, 2003 12:47 am Subject: insufficient authority error.. |
Hi Sabu21s,
I had similary problems in the past. Some usernames are not correctly computed in WSMQ. Try to use usernames with 8 characters max and no special characters like "_".
Regards,
Rai ... |
Topic: Pub/Sub support in a clustered environment |
rwa
Replies: 9 Views: 8817
|
Forum: Clustering Posted: Mon Oct 20, 2003 12:25 am Subject: Pub/Sub support in a clustered environment |
Hi Rahaman,
it is possible to run subscriber and publisher on different queue managers.
Example: publisher and pub/sub on one queue manager (QM1) and subscriber on another queue manager (QM2)
... |
Topic: WebSphere v5 and WebSphere MQ without JMS |
rwa
Replies: 2 Views: 3651
|
Forum: IBM MQ Java / JMS Posted: Sun Oct 19, 2003 11:54 pm Subject: WebSphere v5 and WebSphere MQ without JMS |
Hi Tim,
yes you can use MQ base Java in WebSphere v5.
Your java classes are running inside an JVM. Within this JVM you can use all resources from WebSphere v5 and all resources as the program wo ... |
Topic: lifetime of assembly in java plugin node |
rwa
Replies: 3 Views: 4655
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Aug 19, 2003 10:11 pm Subject: lifetime of assembly in java plugin node |
Hi Kiran,
you are right.
In my futher testing I found out, that clearMessage() should not be called for the message send with the assembly from the input Terminal. This message is handled by WMQ ... |
Topic: lifetime of assembly in java plugin node |
rwa
Replies: 3 Views: 4655
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Aug 18, 2003 11:18 pm Subject: lifetime of assembly in java plugin node |
Hi myself,
now I can answer my question myself. The assembly is cleared after the flow leaves the jplugin node. But the message still exists. The message have to be cleared manually by calling MbMe ... |
Topic: lifetime of assembly in java plugin node |
rwa
Replies: 3 Views: 4655
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Aug 14, 2003 10:25 pm Subject: lifetime of assembly in java plugin node |
Hi,
is the assembly in an java plugin node still alive if the flow was ended?
I want to use assembly in an other flow at a later time. Therfore a referenz to the assembly is stored by the java p ... |
Topic: XML Special Characters and Mainframe |
rwa
Replies: 7 Views: 7915
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Aug 14, 2003 7:00 am Subject: XML Special Characters and Mainframe |
Hi,
special characters can be written in there long form:
< <
> >
& &
' '
" " |
Topic: WMQI 5.0 on Linux :-( |
rwa
Replies: 2 Views: 3514
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jul 17, 2003 4:59 am Subject: WMQI 5.0 on Linux :-( |
The news letters about WBIMB 5.0 told, that the eclipse plugin is running on Windows and Linux.
Is this not the case? |
Topic: Binding Options : MQI |
rwa
Replies: 4 Views: 3962
|
Forum: General IBM MQ Support Posted: Thu Jul 17, 2003 1:03 am Subject: Binding Options : MQI |
A complete documentation for MQ and Java can be found in:
http://www.ibm.com/software/ts/mqseries/api/mqjava.html
The correlation between Java Classes and MQI is explained in this documentation. |