Author |
Message
|
ghoshly |
Posted: Sun Mar 15, 2009 2:13 pm Post subject: Collector node in MB6.1 |
|
|
Partisan
Joined: 10 Jan 2008 Posts: 333
|
Hi,
I am a bit new in MB 6.1. Within a collector node if I take input from HTTP Input node I am unable to keep HTTP destination information i.e request identifier further down the flow,which is the reason I am failing to send the response back through HTTP Reply node.
I have tried to use a compute node before the collector node where I put the Localenvironment to Environment.variables, but post Collector node I could not get that value.
Please help. |
|
Back to top |
|
 |
BuddhuSardar |
Posted: Mon Mar 16, 2009 1:20 am Post subject: |
|
|
Newbie
Joined: 22 Jan 2009 Posts: 5
|
Hi,
The tree structure changes post collector node like:
If you want to access properties, use:
InputRoot.Collection.[CollectorName].Properties;
For MQMD:
InputRoot.Collection.MQInput.MQMD and likewise...
Let me know if this helps |
|
Back to top |
|
 |
ghoshly |
Posted: Mon Mar 16, 2009 1:26 am Post subject: |
|
|
Partisan
Joined: 10 Jan 2008 Posts: 333
|
Hi,
Yes I have seen the change in tree structure post collector node, but could not get these values(HTTPrequestIdentifier) populated in the post collector node tree structure. Do I need to do something before the collector node so that those values are preserved ? |
|
Back to top |
|
 |
Guruprasad |
Posted: Tue Dec 13, 2011 3:46 am Post subject: |
|
|
Newbie
Joined: 13 Dec 2011 Posts: 1 Location: Bangalore
|
try to copy the HTTPrequestIdentifier value in some shared varaible before collector node, then use it after ur collector node... |
|
Back to top |
|
 |
smdavies99 |
Posted: Tue Dec 13, 2011 5:45 am Post subject: |
|
|
 Jedi Council
Joined: 10 Feb 2003 Posts: 6076 Location: Somewhere over the Rainbow this side of Never-never land.
|
You have to think of a flow that uses a Collector node as esseitially TWO separate async flows.
The first part is to the left of the collector node. i.e the bits that go to makeup the collection
The second part is what happens to the complete collection.
There is no guarantee that anything you save outside the collection is going to be visible AND/OR valid in the processing of the data when it is in the complete collection.
_________________ WMQ User since 1999
MQSI/WBI/WMB/'Thingy' User since 2002
Linux user since 1995
Every time you reinvent the wheel the more square it gets (anon). If in doubt think and investigate before you ask silly questions. |
|
Back to top |
|
 |
|