Author |
Message |
Topic: Problem mapping qalias to a clustered queue |
Mike Brady
Replies: 5 Views: 9866
|
Forum: Clustering Posted: Tue Apr 11, 2017 10:13 pm Subject: Problem mapping qalias to a clustered queue |
Thank you to everyone for your helpful advice. I eventually got the scenario working to my satisfaction by defining a clustered QM alias in the gateway, and having the partner QM use this value when ... |
Topic: Problem mapping qalias to a clustered queue |
Mike Brady
Replies: 5 Views: 9866
|
Forum: Clustering Posted: Sun Apr 09, 2017 11:22 pm Subject: Problem mapping qalias to a clustered queue |
Consider the following MQ v8 configuration on RHEL.
Within an enterprise there are several queue managers, and a single cluster to which they all belong.
One of these QMs acts as a gateway to an e ... |
Topic: Environment Tree Persistence |
Mike Brady
Replies: 2 Views: 4194
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 09, 2002 12:01 am Subject: Environment Tree Persistence |
So long as you remain within the same message flow, you should be able to use the LocalEnvironment tree. However, if you need to split your processing between flows, then the Postit node could be use ... |
Topic: Accessing attributes in Java plug-in code |
Mike Brady
Replies: 2 Views: 3897
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Apr 04, 2002 2:00 pm Subject: Accessing attributes in Java plug-in code |
You just need to provide getter/setter methods.
For example,
public String getReason() {
return reason;
}
public void setReason(String reason) {
// store value in your node class f ... |
Topic: Best way to wait in MQSI |
Mike Brady
Replies: 6 Views: 16062
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 05, 2001 4:44 pm Subject: Best way to wait in MQSI |
A new timer plug-in node has just been made available as a SupportPac. This will enable you to implement a much more efficient event driven model, rather than using a Compute node in a spin as a psue ... |
Topic: MQSI v201 - One to Many Messages |
Mike Brady
Replies: 11 Views: 11169
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jul 05, 2001 7:34 pm Subject: MQSI v201 - One to Many Messages |
You should be aware that iterating in this manner will cause a new internal copy of the message to be created for each loop. Generally this is not a problem for a small number of iterations, but in ... |
Topic: Aggregator Plugin |
Mike Brady
Replies: 4 Views: 19124
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jul 05, 2001 7:28 pm Subject: Aggregator Plugin |
The aggregator plug-in node has undergone a number of revisions since its initial publication. Most changes involved introducing new function, but there have also been some bug-fixes and general impr ... |
Topic: MQSI design question |
Mike Brady
Replies: 6 Views: 23872
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jul 05, 2001 7:12 pm Subject: MQSI design question |
I agree with zpat. The approach I have alway s taken is to keep the application as simple as possible, i.e. the application should be aware of a minimal number of queues. Sorting of messages should ... |