为什么我的C#AppDomain会很好,然后在下一次抛出异常?

时间:2010-06-23 20:57:03

标签: c# remoting appdomain

我有一个AppDomain,我用它来将模块加载到沙盒中:

class PluginLoader
{
    public static AppDomain PluginSandbox;

    static PluginLoader()
    {
        AppDomainSetup ads = new AppDomainSetup();
        ads.ApplicationName = "Plugin Modules";
        PermissionSet trustedLoadFromRemoteSourceGrantSet = 
                     new PermissionSet(PermissionState.Unrestricted);
        PluginSandbox = 
                     AppDomain.CreateDomain("Plugin App Domain", 
                     null, ads, trustedLoadFromRemoteSourceGrantSet);
     }

然后,我将引入我需要的DLL并创建一个对象实例:

     public IPlugin FindPlugin(string pluginName)
     {
          ObjectHandle handle = 
                   PluginSandbox.CreateInstance(pluginName, 
                       "Plugins." + pluginName);
                IPlugin ip = (IPlugin)handle.Unwrap();
                return ip;
     }

我经历了几次没有问题。在Sandbox中获取各种对象的实例,没有任何问题。

稍后在代码中,在另一种方法中,我需要找到程序集以获取嵌入式资源(在数据文件中编译,使用ManifestResource)。所以我打电话给:

     Assembly [] ar = PluginSandbox.GetAssemblies();

错误被抛出:

A first chance exception of type 'System.IO.FileNotFoundException' 
occurred in PluginRunner.dll.

Additional information: Could not load file or assembly '10wl4qso,
Version=1.0.3826.25439, culture info=neutral, PublicKeyToken=null'
or one of its dependencies.  The system cannot find the file specified.

我并不感到惊讶。 '10wl4qso'不是程序集的名称,dll或类似的东西。事实上,每次运行似乎都是伪随机的。此外,GetAssemblies的额外乐趣甚至没有被记录下来以引发此异常。

现在我可以在初始对象完好后立即调用GetAssemblies,而且一切都很好。但是几秒钟之后,我用另一种方法得到了这个。作为远程控制,PluginSandbox在调试器中根本没有任何有用的信息。

我在AppDomain上捕获UnhandledException和DomainUnload,但都没有被触发。

为什么我的AppDomain突然不知道它的程序集? 垃圾数据来自哪里? 我该怎么做才能防止这两种情况发生?

2 个答案:

答案 0 :(得分:2)

您看到的这个奇怪的命名程序集可能是由XmlSerializer生成的。 XML序列化程序将输出动态程序集,以便能够快速快速序列化和反序列化特定类型。检查您的代码是否使用XmlSerializer,将其注释掉,看看是否再次出现问题。

答案 1 :(得分:0)

我不知道它是否对你有所帮助...... 尝试覆盖IPlugin上的InitializeLifeTimeService。您的IPlugin实现应该首先从MarshalByRefObject继承。

public class PluginSample : MarshalByRefObject, IPlugin
{

   public overrides object InitializeLifetimeService()
   {
       return null; //Return null to infinite object remote life.
   }
  //...implementation

}

看看这篇文章: RemotingException when raising events across AppDomains