"Neal Walters" <NealWalters@[EMAIL PROTECTED]
> wrote in message
news:618F554B-D843-4CF0-9695-43F92161D10D@[EMAIL PROTECTED]
> Thanks Claus.
>
> That worked, but now I want to use the same ****t to call various
methods,
> and we have the method (operation) name hard-coded in the action.
>
> Can I set this in my orchestration?
>
Hi Neal,
Yes you can. Its a message context property, so to set it up, put in a
Message Assignment shape in the Construct Message shape of the request
message, and add the following:
msgRequest(WCF.Operation) = "<operation_name>";
Now, the <operation_name> has to match one of the operations in the action
mapping that is defined in the Send ****t WCF configuration.
<BtsActionMapping xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Operation Name="<operation1_name>" Action="<action1_name>" />
<Operation Name="<operation2_name>" Action="<action2_name>" />
<Operation Name="<operation3_name>" Action="<action3_name>" />
</BtsActionMapping>
Regards,
Claus


|