|
Home > Archive > BizTalk Server General > December 2005 > Integrating ASP app with BizTalk
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 |
Integrating ASP app with BizTalk
|
|
|
| Hi.
I have a pre-existing Web App done in ASP. From the Web App, I want to call
a BizTalk orchestration. The problem is that the Web App must know when the
orchestration is complete and what the results are, and then inform the Web
App user. Is there a way to do this, particularly where we are NOT using
ASP.NET?
I've hardly used ASP, so there may be a simple approach that I'm just not
aware of.
--
Thanks!
QT
| |
| Yoss Dahan 2005-12-19, 5:54 pm |
| QT wrote:
> Hi.
>
> I have a pre-existing Web App done in ASP. From the Web App, I want to call
> a BizTalk orchestration. The problem is that the Web App must know when the
> orchestration is complete and what the results are, and then inform the Web
> App user. Is there a way to do this, particularly where we are NOT using
> ASP.NET?
>
> I've hardly used ASP, so there may be a simple approach that I'm just not
> aware of.
The best way to do it is to expose the orchestration as a web service
and consume that from your ASP application. if you did not mean ASP.net
this may take a bit more effort but still quite possible.
the orchestration can return a message as the web service response
indicating the result.
If you do no wish to use web services the same approach can be used with
a simpler HTTP call, which would be my second option.
HTH
Yossi Dahan
|
|
|
|
|