views:

11

answers:

0

I have 2 .NET assemblies that I am exposing to COM via COM Interop.

1st one is a .NET Logger component

The 2nd component has a method where you pass in a Logger object. This all works fine in .NET

When I expose both as COM Interop I am doing the following in classic ASP with COM.

Creating an instance of Logger via COM (Interop) Creating an instance of a class (COM Interop) in my other component Calling a method and passing in the Logger object

Anything I need to do to make this work all through COM? It works fine when everything is .NET.