Author |
Message |
Topic: WMQI and external databases |
marko
Replies: 4 Views: 3045
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 03, 2003 5:33 am Subject: Connection count. |
I believe that, for a single datasource, a single connection is used for all compute nodes. One of the WMQI guides (admin?) provides a formula for caluculating the number of connections you will requ ... |
Topic: Any easy way of creating a copy of flow+subflows? |
marko
Replies: 3 Views: 2544
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Apr 04, 2003 6:07 am Subject: Any easy way of creating a copy of flow+subflows? |
Thanks Yaakov.
I will try this. Kirani's suggestion is not easy in my case since I have many flows and subflows, with nesting several layers deep in some cases. I would very likely have errors if ... |
Topic: Any easy way of creating a copy of flow+subflows? |
marko
Replies: 3 Views: 2544
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Apr 03, 2003 1:12 pm Subject: Any easy way of creating a copy of flow+subflows? |
I would like to create a new set of message flows (for a new project) based on an existing set of message flows (from an existing project).
In this case I do not want to share any flows, but I wa ... |
Topic: Really need help with java plug in installation |
marko
Replies: 2 Views: 2296
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Feb 24, 2003 12:11 pm Subject: Really need help with java plug in installation |
I think combo 5 and 7 should work. At least that is how I have configured my plugin nodes. Specifically I make sure that getNodeName() returns a name postfixed with "Node" and in control center I co ... |
Topic: How does MQSI handle the connection to an external database? |
marko
Replies: 1 Views: 2440
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 24, 2002 10:56 am Subject: How does MQSI handle the connection to an external database? |
Connections are pooled. So that a single connection is reused for subsequent transactions. This is much more efficient than creating a new connection for each transaction. |
Topic: Can an Oracle DB trigger put a message on an MQ queue? |
marko
Replies: 5 Views: 7722
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Oct 23, 2002 9:00 am Subject: Can an Oracle DB trigger put a message on an MQ queue? |
Thanks for the tips. I will also check into using Java. |
Topic: Can an Oracle DB trigger put a message on an MQ queue? |
marko
Replies: 5 Views: 7722
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 22, 2002 11:35 am Subject: Can an Oracle DB trigger put a message on an MQ queue? |
Thanks Terry.
Is OMB free? Is there a separate process to maintain with OMB?
I also wanted to avoid polling. I'm currently polling Oracle, and when there are records in a particular state I'm ... |
Topic: WMQI and external databases |
marko
Replies: 4 Views: 3045
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 22, 2002 11:15 am Subject: WMQI and external databases |
The connections are persistent, so that a single connection is reused for multiple flow runs. Multiple connections will be created from a single datasource if you have multiple flows or instances. I ... |
Topic: Can an Oracle DB trigger put a message on an MQ queue? |
marko
Replies: 5 Views: 7722
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 22, 2002 5:40 am Subject: Can an Oracle DB trigger put a message on an MQ queue? |
I just noticed this support pac.
http://www-3.ibm.com/software/ts/mqseries/txppacs/ma0i.html |
Topic: Can an Oracle DB trigger put a message on an MQ queue? |
marko
Replies: 5 Views: 7722
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 21, 2002 8:25 am Subject: Can an Oracle DB trigger put a message on an MQ queue? |
I would like to have an Oracle trigger put a message on a queue to kick off a flow. Is there any free Oracle package to do this?
We are using Oracle 8.1.7 on HPUX.
Thanks.
. |
Topic: Retrieving datasource names from JavaNode |
marko
Replies: 7 Views: 4509
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 17, 2002 11:10 am Subject: Retrieving datasource names from JavaNode |
The interface for MbNode has a method, createSQLStatement(..), that takes a datasource name. You can add property to your custom node (eg. getDatasourceName(), setDatasouceName()), to allow a user to ... |
Topic: Creating a back out Queue |
marko
Replies: 7 Views: 8867
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Oct 16, 2002 8:10 am Subject: Creating a back out Queue |
WMQI may not like your message just having an XML decl. Try adding a message such as <test>testing</test>. |
Topic: Creating a back out Queue |
marko
Replies: 7 Views: 8867
|
Forum: WebSphere Message Broker (ACE) Support Posted: Mon Oct 14, 2002 12:34 pm Subject: Creating a back out Queue |
The backout queue is a queue property. You can use /opt/mqm/bin/runmqsc to set the backout queue.
ALTER QLOCAL(<q_name>) BOQNAME(<backout_q_name>)
No WMQI config ... |
Topic: how can i debug java node |
marko
Replies: 5 Views: 3736
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 11, 2002 11:25 am Subject: how can i debug java node |
Basically append to a file on your local filesystem, then print trace statements to the file. You can then examine the file to see what happened in your plugin.
I have not tried it, but it may als ... |
Topic: java plugin node |
marko
Replies: 2 Views: 2910
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 11, 2002 8:57 am Subject: java plugin node |
Try identifying your node using getNodeName().
Note that your node name must end with "Node".
>>>>>>>>>>>>>>>>>>>>>>>>&g ... |