Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Web Service without message parameter.

Status
Not open for further replies.

rodmcleay

Programmer
Jun 20, 2005
11
0
0
AU
Hi All,

I was wondering if it is possible to execute an Orchestration from an ASP.NET page.
I have guessed that you would probably need to make it a Web Service but the wizard does not let you create web service unless there is a public receive port.
The only problem is that there is not supposed to be a message to commence the Orchestration.
Is it possible to invoke an orchestration via a web service without passing a message as a parameter.

Many Thanks
Rod
 
Actually I dont think so. BizTalk is built for Message Processing. Why dont you just create a simple Message like this:
Code:
<Message>
<Request>This is a request</Request>
<Response>None / Success / Failure</Response>
</Message>

and pass that Message to BizTalk. Shouldnt take long to do that!

HTH,

Stephan
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top