Hope you all having a good day!
I need your recommendations for something I've been thinking about these last three days. I have a COM component written in an unmanaged platform. The component has a method that returns a sort of some sensitive data and I need to store the value as soon as I get it.
What I need is to call a UDF to access the COM object and get the value. I've tried this so far and I'm getting this exception:
Msg 6522, Level 16, State 2, Line 1
A .NET Framework error occurred during execution of user-defined routine or aggregate "GetRate": System.Runtime.InteropServices.COMException: Retrieving the COM class factory for component with CLSID {D039A99F-5D45-42C7-A53C-507913D8C6D6} failed due to the following error: 80040154.
System.Runtime.InteropServices.COMException:
at System.RuntimeTypeHandle.CreateInstance(RuntimeType type, Boolean publicOnly, Boolean noCheck, Boolean& canBeCached, RuntimeMethodHandle& ctor, Boolean& bNeedSecurityCheck)
at System.RuntimeType.CreateInstanceSlow(Boolean publicOnly, Boolean fillCache)
at System.RuntimeType.CreateInstanceImpl(Boolean publicOnly, Boolean skipVisibilityChecks, Boolean fillCache)
at System.Activator.CreateInstance(Type type, Boolean nonPublic)
at UserDefinedFunctions.GetRate(SqlString Source_Currency_Name, SqlString Destination_Currency_Name, SqlMoney Amount, SqlBoolean Mode)
It seems that the function can't see the registered COM component (80040154). The clr assembly is registered as unrestricted. I tried to call the UDF with 'sa' or in Windows Integrated mode. There is no difference.
This is the code for initializing the COM component and the code is working fine outside SQL:
Activator.CreateInstance(Type.GetTypeFromCLSID(new Guid("D039A99F-5D45-42C7-A53C-507913D8C6D6"), true))
Is there anyway to make this working guys? One way or another I need a UDF call this COM object or at least access some windows service with .NET remoting through this UDF. Every suggestion guide me through this way would be appreciated.
Thank you all.
