Author |
Message |
Topic: Removing empty elements in output XML |
mverh
Replies: 12 Views: 13902
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Oct 27, 2005 12:16 pm Subject: Removing empty elements in output XML |
Ok, I have got a fix to the code that works...kind of...
the new code looks like...
CREATE COMPUTE MODULE recursiveCode_Compute
CREATE FUNCTION Main() RETURNS BOOLEAN
BEGIN
-- CAL ... |
Topic: Removing empty elements in output XML |
mverh
Replies: 12 Views: 13902
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Oct 26, 2005 12:50 pm Subject: Removing empty elements in output XML |
I need code like this...and like the last post by x061294 this code doesn't work for me either...since people posted it did work I am curious to know if it is a V2.1 versus V5 issue...in any case I am ... |
Topic: Agg Control Timeout |
mverh
Replies: 7 Views: 6385
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 11, 2005 1:54 pm Subject: Agg Control Timeout |
JT, I modified my flow to grab system time immediately after the MQInput. I took this time and added 5 seconds to it. My agg control had a timeout value of 20 seconds. I set the timeout value in the c ... |
Topic: Agg Control Timeout |
mverh
Replies: 7 Views: 6385
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 11, 2005 10:13 am Subject: Agg Control Timeout |
JT, is that part of the tree mutable? Have you experimented changing it to see if the changes take? |
Topic: Agg Control Timeout |
mverh
Replies: 7 Views: 6385
|
Forum: WebSphere Message Broker (ACE) Support Posted: Tue Oct 11, 2005 9:53 am Subject: Agg Control Timeout |
elvis_gn, promoting the property makes it configurable at the flow level, it does not necessarily make it available on the configure tab of the bar file, I've looked at that.
From what I have look ... |
Topic: Agg Control Timeout |
mverh
Replies: 7 Views: 6385
|
Forum: WebSphere Message Broker (ACE) Support Posted: Fri Oct 07, 2005 6:32 am Subject: Agg Control Timeout |
Hi, we are running WBI-MB V5. We are using aggregation and need to change the Agg Control Timeout as we migrate from test to production. In test we want it to be longer since the test environment gene ... |
Topic: Java Plugin doesn't propagate Environment |
mverh
Replies: 1 Views: 2482
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed Sep 21, 2005 12:59 pm Subject: Java Plugin doesn't propagate Environment |
Thought I'd post the resolution to this. Turns out that the GlobalEnvironment is the only message in the message assembly that is mutable. As a result there is no need to copy it to a new assembly if ... |
Topic: Java Plugin doesn't propagate Environment |
mverh
Replies: 1 Views: 2482
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Sep 08, 2005 11:45 am Subject: Java Plugin doesn't propagate Environment |
Hi, we are running WBI-MB V5 CSD06.
We have developed a custom java plugin that gets us broker info and inserts it into the Environment tree. See post
http://www.mqseries.net/phpBB2/viewtopic.p ... |
Topic: where i am |
mverh
Replies: 6 Views: 5957
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu Jun 30, 2005 9:03 am Subject: where i am |
Be aware that not all plugin node classes are supported in java procedures. If you want to get the broker name you are advised to develop a plugin.
Review restrictions in the following post:
htt ... |
Topic: Java Plugin Example that sets Environment |
mverh
Replies: 14 Views: 13572
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 12, 2005 10:20 am Subject: Java Plugin Example that sets Environment |
Jeff, I agree that having elements as chiildren of Environment is not generally recommended and making the elements children of another child element of Environment i.e. Environment.Variables etc is. ... |
Topic: Java Plugin Example that sets Environment |
mverh
Replies: 14 Views: 13572
|
Forum: WebSphere Message Broker (ACE) Support Posted: Thu May 12, 2005 9:59 am Subject: Java Plugin Example that sets Environment |
For those of you who are interested here is my java plugin code that sets Environment.brokerName, Environment.executionGroupName and Environment.messageFlowName. Enjoy...
package com.ibm.customNode ... |
Topic: Java Plugin Example that sets Environment |
mverh
Replies: 14 Views: 13572
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 11, 2005 5:07 pm Subject: Java Plugin Example that sets Environment |
Thanks Mikhail, I've gotten to the point where I've got the globalEnvironment. I'm adding the logic to handle the situations where if the element doesn't exist I add it, if it does exist overwrite it ... |
Topic: Java Plugin Example that sets Environment |
mverh
Replies: 14 Views: 13572
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 11, 2005 5:00 pm Subject: Java Plugin Example that sets Environment |
There is no guarantee moving forward that the methods that work today will work. Since it is not supported and there is risk it will fail, it is not something I want to propose to my customer.
FYI ... |
Topic: Java Plugin Example that sets Environment |
mverh
Replies: 14 Views: 13572
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 11, 2005 1:30 pm Subject: Java Plugin Example that sets Environment |
Jeff is correct...I originally developed this as a java procedure. I developed my own methods utilizing the getName method of MbBroker, MbExecutionGroup and MbMessageFlow to get the values.
It wor ... |
Topic: Java Plugin Example that sets Environment |
mverh
Replies: 14 Views: 13572
|
Forum: WebSphere Message Broker (ACE) Support Posted: Wed May 11, 2005 12:22 pm Subject: Java Plugin Example that sets Environment |
Hi, I am working on developing a java plugin to populate the environment tree with the broker name, execution group name and flow name. I have the methods to get these values.
I am looking for som ... |