Ladies and Gents, Hope you could help …
Here is the issue: I need to execute couple methods of class from 3rd-party dll in BTS 2010 orchestration. This 3rd-party dll has been compiled in .Net 2.0 and it references another 3rd-party dll compiled in .Net 1.1. Both dlls are signed. I used
C:\Program Files (x86)\Microsoft SDKs\Windows\v7.0A\Bin\NETFX 4.0 Tools\gacutil.exe to GAC them.
I have created C# class library project with class (future call WRAPPER). My WRAPPER class has static methods that wrap calls to functions of the 3<sup>rd</sup>-party classes. Target Framework of my C# class library is NET 4.0. My DLL is signed and GACed.
Unit tests of WRAPPER class’s static methods are working fine. But, when these methods are called from BTS orchestration I got ‘The invoked member is not supported in a dynamic assembly.’ exception. Call stack shows error happened when one of method of 3rd-party class is called.
Please let me know your thoughts re why BizTalk process (32-bit) fails to execute my static method while MS VS 2010 unit test (Target Framework 4.0) has no problem to execute it.
Also please note the following
1) My BTS config settings:
<startupuseLegacyV2RuntimeActivationPolicy="true">
<supportedRuntimeversion="v4.0" />
<supportedRuntimeversion="v2.0.50727" />
<supportedRuntimeversion="v1.1.4322" />
</startup>
2) It’s Dev environment with W2K8 R2 EE
3) Same code works in BTS 2006, where my wrapper class/dll is compiled in NET 2.0.
Thank you kindly for your time and attention,
Alex
AD