I have an application that creates a new app domain like this:
private static AppDomain domain = null;
private static void LoadAndLaunchAppDomain(string assemblyFile, string typeName)
{
AppDomainSetup setup = new AppDomainSetup()
{
ApplicationBase = AppDomain.CurrentDomain.BaseDirectory,
ShadowCopyFiles = "true"
};
domain = AppDomain.CreateDomain("ClientKernel", null, setup);
domain.UnhandledException += new UnhandledExceptionEventHandler(domain_UnhandledException);
ClientKernelLauncher launcher = (ClientKernelLauncher)domain.CreateInstanceFromAndUnwrap(assemblyFile, typeName);
launcher.Launch();
}
static void domain_UnhandledException(object sender, UnhandledExceptionEventArgs e)
{
// handler
}
At some point an exception is thrown and the flow reaches inside the HANDLER. What I actually want is to recreate the domain when this happens. What I noticed is that the handler is actually running on the "ClientKernel" app domain and not the original domain that created it.
How can communicate back to the original domain and tell it to call again the LoadAndLaunchAppDomain() method?
staticfrom both methods, does your code still work? If so, does it then execute in the correctAppDomain(since the original object was created in the originalAppDomain)? Note that if instance methods are allowed for the callbacks, you may still need to make your objectSerializable/MarshalByRefObjectfor this to work. – Merlyn Morgan-Graham Dec 23 '10 at 10:58