| Matt Milner 2004-04-30, 1:37 pm |
| you need to use a dynamic send port in your orchestration and then set the
address on the port
myPort(Microsoft.XLANGs.BaseTypes.Address) = <enter msmq address here>;
You can also set properties on the message that influence the queue using
the same type of notation:
myMessage(MSMQT.Label) = "my message label";
you do all this in message assignment shapes as you create the message for
the queue.
Matt
"TacitTurn" <anonymous@discussions.microsoft.com> wrote in message
news:69e701c42eaf$fa157040$a101280a@phx.gbl...
> Hi,
>
> In my Biztalk system I receive an XML message which
> contains a code of the destination office that the message
> has to goto. I have a .NET component which looks up the
> transmission address in a database and set the value in
> the destination XML.
>
> How do I set the send port MSMQ queue address using the
> value I have just added to the destination schema.
>
>
|