05-27-05 12:56 PM
Thanks Carlos for your help. Will the orchestration "pause" until the
function has completed or will it continue on. In other words, will it wait
on the expression shape until it receives the return value?
Thanks
Bill
"carlos" wrote:
[vbcol=seagreen]
> u can create a vb.net project and place all code that you need, is importa
nt
> that you define an "strong name" and sign your assembly with it and addtio
nal
> you must declare your class as "Serialized"... after compile and create th
e
> assembly you must register it in the gac (use gacutil.exe utility)... if i
t
> not in the gac BTS cannot see it...
>
> in the orchestration, you must add this assembly as reference and create a
> "Variable" in you orchestration as this type. At the last end you must
> create an instance of the variable in a Expression shape (C# code)
>
> MyVariable = new MyNamespace.MyClass();
>
> and after this you can use the boolean function (example IsUserValid) insi
de
> a Decision shape...
>
> MyVariable.IsUserValid() == true
>
> regards !
>
> "bmc410" wrote:
>
[ Post a follow-up to this message ]
|