从其他.dll加载服务并将它们隔离运行

时间:2011-03-21 15:59:33

标签: c# .net reflection runtime appdomain

我想以不同的方式运行来自不同.dll的多个服务。基本上,所有服务都是从RoleEntryPoint派生的,我希望将每个服务加载到一个单独的AppDomain中,然后在另一个线程中运行它。

到目前为止,我可以找到服务并获取其类型:

        String pathToDll = @"C:\....\bin\Debug\ChildWorkerRole.dll"; 
        Assembly assembly = Assembly.LoadFrom(pathToDll);
        Type serviceType = assembly.GetTypes().SingleOrDefault(t => t.BaseType == typeof(RoleEntryPoint));

并在当前AppDomainThread

中运行它
        RoleEntryPoint myRole2 = (RoleEntryPoint)Activator.CreateInstance(serviceType);
        if (myRole2.OnStart())
            myRole2.Run();

但是当我尝试在不同的AppDomain中单独运行它时,我得到一个例外:

        AppDomain domain = AppDomain.CreateDomain("MyNewDomain");
        RoleEntryPoint myRole = (RoleEntryPoint)domain.CreateInstanceFromAndUnwrap(pathToDll, serviceType.FullName);
        if (myRole.OnStart())
            myRole.Run();

此例外:

System.Runtime.Serialization.SerializationException was unhandled
  Message=Type 'ChildWorkerRole.WorkerRole' in assembly 'ChildWorkerRole, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' is not marked as serializable.
  Source=mscorlib
  StackTrace:
       at System.AppDomain.CreateInstanceFromAndUnwrap(String assemblyName, String typeName)
.......

有趣的是ChildWorkerRole实际上标有SerializableAttribute ...但可能是因为RoleEntryPoint不是,所以无法完成。

任何想法或解决方法?

谢谢!

1 个答案:

答案 0 :(得分:6)

要使用单独的AppDomain中的类型,它以及您直接使用的所有类型,都需要标记为[Serializable],或者您需要从MarshalByRefObject派生它们

如果无法做到这一点,唯一真正的选择是制作一个可以使用的代理类,它遵循上述标准,并允许它在内部管理你的类型。