|
Home > Archive > BizTalk Server Orchestration > December 2004 > Integrating a .NET application with BizTalk Orchestration
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 a .NET application with BizTalk Orchestration
|
|
| CyberLotus 2004-12-23, 7:46 am |
| Hi,
Can anybody let me know how to call an Biztalk Orchestration from another
application?
So far I tried through Web service but can my application directly call my
orchestration?
TIA.
-CyberLotus
| |
| Hugo Rodger-Brown 2004-12-23, 7:46 am |
| Yes - if you expose the orchestration as a web service. See "Publishing Web
Services" in the documentation for details of how to do this.
Hugo
"CyberLotus" <CyberLotus@discussions.microsoft.com> wrote in message
news:4E6FA2E6-CB78-4CA8-9449-4C86FDA9197E@microsoft.com...
> Hi,
>
> Can anybody let me know how to call an Biztalk Orchestration from another
> application?
>
> So far I tried through Web service but can my application directly call my
> orchestration?
>
> TIA.
> -CyberLotus
| |
| Matt Meleski 2004-12-23, 5:51 pm |
| Look at the SumitDirect SDK sample. Shows how can programatically call an
Orchestration from .Net code:
http://msdn.microsoft.com/library/d...amples_bgip.asp
Matt.
"CyberLotus" wrote:
> Hi,
>
> Can anybody let me know how to call an Biztalk Orchestration from another
> application?
>
> So far I tried through Web service but can my application directly call my
> orchestration?
>
> TIA.
> -CyberLotus
| |
| CyberLotus 2004-12-26, 7:46 am |
| Hi Hugo,
Yeah, I tried that but it didn't solve my purpose. I wanted an applicaion
(apart from web service) to call my orchestration. Anyway thanks as the
requirement is changed now.
But Now I want my orchestration to call another application. In the sense,
I'm having a class and my orchestration should be able to call that class
(without consuming a web service).
How can I do that?
TIA,
Lotus
"Hugo Rodger-Brown" wrote:
> Yes - if you expose the orchestration as a web service. See "Publishing Web
> Services" in the documentation for details of how to do this.
>
> Hugo
>
> "CyberLotus" <CyberLotus@discussions.microsoft.com> wrote in message
> news:4E6FA2E6-CB78-4CA8-9449-4C86FDA9197E@microsoft.com...
>
>
>
| |
| CyberLotus 2004-12-26, 7:46 am |
| Hi Matt,
Thanks for the help.
But Now I want my orchestration to call another application. In the sense,
I'm having a class and my orchestration should be able to call that class
(without consuming a web service).
How can I do that?
TIA,
Lotus
"Matt Meleski" wrote:
[vbcol=seagreen]
> Look at the SumitDirect SDK sample. Shows how can programatically call an
> Orchestration from .Net code:
>
> http://msdn.microsoft.com/library/d...amples_bgip.asp
>
> Matt.
>
> "CyberLotus" wrote:
>
| |
| Matt Milner 2004-12-27, 8:46 pm |
| You can create variables in your orchestration that are .Net classes. In
expression shapes in the orchestration, you can use these classes like you
would from a C# application. There are some limitations related to
orchestration persistence such as your class must be serializable or be
consumed in an atomic scope; you might need synchronized scopes if you are
working with your variable on different parallel branches; but for hte most
part it is straight forward. Add a reference to your .net assembly, declare
a variable of the right type, in an expression shape, create a new instance
of your variable and start using it.
Matt
"CyberLotus" <CyberLotus@discussions.microsoft.com> wrote in message
news:95FB1F51-3807-4C1B-8E56-08EEAE9ECF9C@microsoft.com...[vbcol=seagreen]
> Hi Matt,
>
> Thanks for the help.
>
> But Now I want my orchestration to call another application. In the sense,
> I'm having a class and my orchestration should be able to call that class
> (without consuming a web service).
> How can I do that?
>
> TIA,
> Lotus
>
> "Matt Meleski" wrote:
>
|
|
|
|
|