|
Home > Archive > BizTalk Server Orchestration > June 2004 > Configure Script Functoid can't see method on external assembly
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 |
Configure Script Functoid can't see method on external assembly
|
|
| Soren 2004-06-20, 11:09 pm |
| From a script functoid, I'm trying to call a method on an external
assembly.
The assembly is added to the GAC. The signature of the method is:
public static string ExtractSSN(string field)
From the Configure Functoid Script I can pick the assembly and the
class, but not the method (only the usual Equal, GetHashCode, GetType
and ToString are visible).
I have tried stopping the Biztalk Service, restarted VS.NET (even
rebooted!) to prevent cashing. Nothing works.
Am I doing anything wrong here?
| |
| Alan Smith 2004-06-20, 11:09 pm |
| Hi Soren,
I think the "static" declaration is the problem. Try calling creating a non-static
method and caling it.
/Alan
"Soren" wrote:
> From a script functoid, I'm trying to call a method on an external
> assembly.
>
> The assembly is added to the GAC. The signature of the method is:
>
> public static string ExtractSSN(string field)
>
> From the Configure Functoid Script I can pick the assembly and the
> class, but not the method (only the usual Equal, GetHashCode, GetType
> and ToString are visible).
>
> I have tried stopping the Biztalk Service, restarted VS.NET (even
> rebooted!) to prevent cashing. Nothing works.
>
> Am I doing anything wrong here?
>
| |
| Soren 2004-06-20, 11:09 pm |
| But of course... I should have realized that when writing which
methods where available...
Thanks a lot :-)
"Alan Smith" <AlanSmith@discussions.microsoft.com> wrote in message news:<9422A178-EF0D-4FD9-BE51-A0D3E39FAE98@microsoft.com>...[vbcol=seagreen]
> Hi Soren,
>
> I think the "static" declaration is the problem. Try calling creating a non-static
> method and caling it.
>
> /Alan
>
>
> "Soren" wrote:
>
|
|
|
|
|