sometimes we get a very strange error when calling a function from a .NET assembly: "unable to load method xxx from class zzz. "
We use .NET explorer to generate the APL from an Assembly File. The assembly file contains various instance methods with returntype int.
This error seems to occur completely random. If it occurred once, we have no chance to call the 'broken' method again. All other methods are still functional. After restarting the application, the broken method works again - with the same payload! The .NET assembly is written in c#, methods are public and instanced and unfortunately we cannot reproduce this error in our testsystem.
- .NET dll is compiled as x86 - .NET Version 4.5
TD Version is 6.2 SP5 Update 1 Build 48134
Syntax C#:
Code: Select all
namespace aaa.bbb
{
public class zzz
{
public int xxx(string a, string b, string c, string[] d, string e, string f, string g, bool h, ref string i, ref string j)
{
...
}
}
}
regards
Michael