|
Home > Archive > BizTalk Server Orchestration > November 2005 > How to call or start orchestration in another project?
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 |
How to call or start orchestration in another project?
|
|
| AlanYu 2005-11-04, 7:47 am |
| Hi All,
I find all the samles for call orchestration and direct binding are all in
same project. Is it possible for us to call orchestration across projects, as
I wannna reuse the code in seperate project.
I tried to reference the orchestration, but it doesn't work
Thanks.
| |
| carlos 2005-11-04, 7:47 am |
| hi..
yes, you can do it.... you must check this:
1. the orchestration to be called from other project must be set public...
verify that the "Type Modifier" property in the orchestration set to
"public"...
2. if you orchestration receive "Variables" of type "XmlDocument" or other
non-serialize class, then the "Call Orchestration Shape" or the "Start
Orchestration Shape" doesn't pass the correct type... check this for more
info http://support.microsoft.com/kb/899197/en-us
"AlanYu" wrote:
> Hi All,
>
> I find all the samles for call orchestration and direct binding are all in
> same project. Is it possible for us to call orchestration across projects, as
> I wannna reuse the code in seperate project.
>
> I tried to reference the orchestration, but it doesn't work
>
> Thanks.
| |
| AlanYu 2005-11-08, 6:20 pm |
| thanks in advance
"carlos" wrote:
[vbcol=seagreen]
> hi..
>
> yes, you can do it.... you must check this:
>
> 1. the orchestration to be called from other project must be set public...
> verify that the "Type Modifier" property in the orchestration set to
> "public"...
>
> 2. if you orchestration receive "Variables" of type "XmlDocument" or other
> non-serialize class, then the "Call Orchestration Shape" or the "Start
> Orchestration Shape" doesn't pass the correct type... check this for more
> info http://support.microsoft.com/kb/899197/en-us
>
> "AlanYu" wrote:
>
|
|
|
|
|