views:

887

answers:

3

Here's the core problem: I have a .NET application that is using COM interop in a separate AppDomain. The COM stuff seems to be loading assemblies back into the default domain, rather than the AppDomain from which the COM stuff is being called.

What I want to know is: is this expected behaviour, or am I doing something wrong to cause these COM related assemblies to be loaded in the wrong AppDomain? Please see a more detailed description of the situation below...

The application consists of 3 assemblies: - the main EXE, the entry point of the application. - common.dll, containing just an interface IController (in the IPlugin style) - controller.dll, containing a Controller class that implements IController and MarshalByRefObject. This class does all the work and uses COM interop to interact with another application.

The relevant part of the main EXE looks like this:

AppDomain controller_domain = AppDomain.CreateDomain("Controller Domain");
IController c = (IController)controller_domain.CreateInstanceFromAndUnwrap("controller.dll", "MyNamespace.Controller");
result = c.Run();
AppDomain.Unload(controller_domain);

The common.dll only contains these 2 things:

public enum ControllerRunResult{FatalError, Finished, NonFatalError, NotRun}
public interface IController
{
    ControllerRunResult Run();
}

And the controller.dll contains this class (which also calls the COM interop stuff):

public class Controller: IController, MarshalByRefObject

When first running the application, Assembly.GetAssemblies() looks as expected, with common.dll being loaded in both AppDomains, and controller.dll only being loaded into the controller domain. After calling c.Run() however I see that assemblies related to the COM interop stuff have been loaded into the default AppDomain, and NOT in the AppDomain from which the COM interop is taking place.

Why might this be occurring?

And if you're interested, here's a bit of background:

Originally this was a 1 AppDomain application. The COM stuff it interfaces with is a server API which is not stable over long periods of use. When a COMException (with no useful diagnostic information as to its cause) occurs from the COM stuff, the entire application has to restarted before the COM connection will work again. Simply reconnecting to the COM app server results in immediate COM exceptions again. To cope with this I have tried to move the COM interop stuff into a seperate AppDomain so that when the mystery COMExceptions occur I can unload the AppDomain in which it occurs, create a new one and start again, all without having to manually restart the application. That was the theory anyway...

A: 

Don't make your Controller MBR. Create a small proxy, which loads the Controller in the second domain and starts it. That way Controller dll will not be loaded in the first domain.

Sunny
Hi Sunny,That was the idea behind using the IController interface in a common dll. The Controller.dll doesn't get loaded into the default domain. The COM interop activity by the Controller class in the controller domain seems to cause COM related DLLs to be loaded in the default domain.
Xiaofu
UPDATE: using a proxy to create and run the Controller in the other domain has the same effect. The Controller.dll is NOT getting loaded into the default AppDomain (that wasn't the problem), but the COM interop stuff seems to still be loading COM assemblies back in the default domain.
Xiaofu
Did you try to load the interop assemblies manually in the second domain, and not relaying on the autoloader?
Sunny
Are you suggesting loading the .NET interop assembly manually, or the COM assemblies that the interop assembly then causes to be loaded? I will check into it and see what happens as soon as I have time.
Xiaofu
I had to load the interop assemblies.
Sunny
A: 

Hi, is there any solution to this? I have the same problem. I am loading an Interop Assemlby in a separate Domain and it gets loaded in my calling (current) domain. Any solutions to this are highly appreciated! Thanks.

Stefan
Hi Stefan, in the end I changed my app to make it restart completely on failure and then pick up where it left off. That was acceptable for my needs. I've never had the time to try Sunny's suggestion of loading the interop assemblies manually, so perhaps you could give that a try?
Xiaofu
+2  A: 

Unfortunately, A COM component is loaded within Process Space and not within the context of an AppDomain. Thus, you will need to manually tear-down (Release and Unload) your Native DLLs (applies to both COM and P/Invoke). Simply destroying an appdomain will do you no good, but respawning the whole process shouldn't be necessary to reset COM state (simply recreating the COM object(s) should also normally work, this sounds like a bug within the component providers code, perhaps they can address it?)

Shaun Wilson
Thanks for your response, Shaun. It's been so long now that I can't remember if I tried just recreating the COM objects, but I suspect I did. When I have time I will give your suggestions a try. In the meantime, +1 for mentioning the process space.
Xiaofu
So I still haven't had a chance to try this, but you did actually answer the main question so I'll mark it as answered. Many thanks for everyone's input.
Xiaofu
And yes, I do suspect it's a bug in the provider's code, especially as the cause of the error leading me to try and unload/reload the COM component is a real mystery. I should re-examine my own code again someday before blaming someone else though.
Xiaofu