| Greg Forsythe 2006-04-18, 12:47 am |
| 1. To trigger an orchestration you must send a message. How do you want to
trigger this orchestration, is there an external event or will this be
scheduled.
If it is scheduled then this adapter may help:
http://www.gotdotnet.com/Community/...C9-84BF4E783728
2. You can call a web service with no input. When you add a web reference
you will get a message type for the input message (basically a null message)
In your orchestration you need to declare a message of this type, use an
empty construct message shape to construct the message and send this message
to your web service send port.
Greg
"Prash" <Prash@msn.com> wrote in message
news:Oano1EmYGHA.3444@TK2MSFTNGP05.phx.gbl...
>I am trying to call a few web services and ran into a problem. So here are
>a couple of questions.
>
> 1. How do I trigger an orchestration without having a receive? I am
> constructing a message using message constructor, and then calling a web
> service with this message. I don't need to read any input. So how do I
> simply trigger the orchestration?
>
> 2. How do I call a web service which has no input? I am trying another web
> service which returns current time. It doesn't take any input. So how do I
> call it from an orchestration?
>
> Thank you!
>
|