|
Home > Archive > BizTalk Server Orchestration > January 2005 > How to pass from Orchestration Context and Message to pipeline
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
How to pass from Orchestration Context and Message to pipeline
|
|
| Prasad 2005-01-24, 2:47 am |
| Hi
How to read Context and Message information in Orchestration and
need pass Context and Message parameters to pipeline, Could u please help, is
it possible in Orchestration.
| |
| Stephen W. Thomas 2005-01-24, 5:50 pm |
| Hello.
You can access any of the message context properties like this:
sFileName = Message(BTS.ReceiveFileName);
With sFileName as a string variable and Message is your received message.
You can also set the context values by coping the message and changing the
properties like this:
NewMessage = Message;
NewMessage(BTS.ReceiveFileName) = “Newvalues”;
This post might help you out as well:
http://www.geekswithblogs.net/sthom...0/07/12285.aspx
Hope this helps.
Stephen W. Thomas
http://www.geekswithblogs.net/sthomas
"Prasad" wrote:
> Hi
> How to read Context and Message information in Orchestration and
> need pass Context and Message parameters to pipeline, Could u please help, is
> it possible in Orchestration.
>
|
|
|
|
|