My need:
A: I want methods to run from service tier >>> com.dll.
B: I want to receive events in the opposite direction.
My solution (however not working) is to use a ”proxy layer”:
A: Run methods from service tier >>> .net-dll >>> com.dll.
B: Receive methods in the opposite direction.
Result:
”retrieving the COM class factory for component with CLSID { 373DF15E-D1D4-4D0E-A9DC-03E9116254E2} failed due to the following error: 80040154”Class not registered…”
As I understand I am smoked because:
A: Service tier will not run a 32-bit .net-dll.
B: A 64-bit .net-dll will not run a com-dll.
Is my conclusion correct, or is the problem something else?
Is there another possible solution?