Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to load to new AppDomin some assembly which has a complex references tree (MyDll.dll -> Microsoft.Office.Interop.Excel.dll -> Microsoft.Vbe.Interop.dll -> Office.dll -> stdole.dll)

As far as I understood, when an assembly is been loaded to AppDomain, it's references would not be loaded automatically, and I have to load them manually. So when I do:

string dir = @"SomePath"; // different from AppDomain.CurrentDomain.BaseDirectory
string path = System.IO.Path.Combine(dir, "MyDll.dll");

AppDomainSetup setup = AppDomain.CurrentDomain.SetupInformation;
setup.ApplicationBase = dir;
AppDomain domain = AppDomain.CreateDomain("SomeAppDomain", null, setup);

domain.Load(AssemblyName.GetAssemblyName(path));

and got FileNotFoundException:

Could not load file or assembly 'MyDll, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. The system cannot find the file specified.

I think the key word is one of its dependencies.

Ok, I do next before domain.Load(AssemblyName.GetAssemblyName(path));

foreach (AssemblyName refAsmName in Assembly.ReflectionOnlyLoadFrom(path).GetReferencedAssemblies())
{
    domain.Load(refAsmName);
}

But got FileNotFoundException again, on another (referenced) assembly.

How to load all references recursively?

Have I to create references tree before loading root assembly? How to get an assembly's references without loading it?

share|improve this question
3  
hey guy, this is realy useful question. – pylover Sep 18 '12 at 1:19

5 Answers

up vote 22 down vote accepted

http://support.microsoft.com/kb/837908/en-us

C# version

Create a moderator class and inherit it from MarsharByRef

class ProxyDomain : MarshalByRefObject
{
    public Assembly GetAssembly(string AssemblyPath)
    {
        try
        {
            return Assembly.LoadFrom(AssemblyPath);
        }
        catch (Exception ex)
        {
            throw new InvalidOperationException(ex);
        }
    }
}

call from client site

ProxyDomain pd = new ProxyDomain();
Assembly assembly = pd.GetAssembly(assemblyFilePath);
share|improve this answer
2  
You just ROCK Dude. I like clean coding. – Mehdi LAMRANI Feb 3 '11 at 16:25
4  
How is this solution put into context of creating a new AppDomain, can someone explain? – Tri Q Jul 29 '11 at 4:39
11  
It solves the problem but HOW ? – Basit Anwer Jan 25 '12 at 10:07
2  
A MarshalByRefObject can be passed around appdomains. So I would guess that Assembly.LoadFrom tries to load the assembly in a new appdomain, what is only possible, if the calling object could be passed between those appdomains. This is also called remoting as described here: msdn.microsoft.com/en-us/library/… – nemcija Jun 29 '12 at 0:48
5  
This doesn't work. If you execute the code and check the AppDomain.CurrentDomain.GetAssemblies() you'll see that the target assembly you're attempting to load is loaded into the current application domain and not the proxy one. – Jduv Nov 13 '12 at 4:41
show 3 more comments

On your new AppDomain, try setting an AssemblyResolve event handler. That event gets called when a dependency is missing.

share|improve this answer
It doesn't. Actually, you get an exception on the line you're registering this event on the new AppDomain. You've to register this event on the current AppDomain. – user1004959 Jan 2 at 12:34

You need to invoke CreateInstanceAndUnwrap before your proxy object will execute in the foreign application domain.

 class Program
{
    static void Main(string[] args)
    {
        AppDomainSetup domaininfo = new AppDomainSetup();
        domaininfo.ApplicationBase = System.Environment.CurrentDirectory;
        Evidence adevidence = AppDomain.CurrentDomain.Evidence;
        AppDomain domain = AppDomain.CreateDomain("MyDomain", adevidence, domaininfo);

        Type type = typeof(Proxy);
        var value = (Proxy)domain.CreateInstanceAndUnwrap(
            type.Assembly.FullName,
            type.FullName);

        var assembly = value.GetAssembly(args[0]);
        // AppDomain.Unload(domain);
    }
}

public class Proxy : MarshalByRefObject
{
    public Assembly GetAssembly(string assemblyPath)
    {
        try
        {
            return Assembly.LoadFile(assemblyPath);
        }
        catch (Exception)
        {
            return null;
            // throw new InvalidOperationException(ex);
        }
    }
}

Also, note that if you use LoadFrom you'll likely get a FileNotFound exception because the Assembly resolver will attempt to find the assembly you're loading in the GAC or the current application's bin folder. Use LoadFile to load an arbitrary assembly file instead--but note that if you do this you'll need to load any dependencies yourself.

share|improve this answer
+1 You're right. How to load the dependencies though? – user1004959 Jan 2 at 14:43
Check out the code I wrote to solve this problem: github.com/jduv/AppDomainToolkit. Specifically, look at the LoadAssemblyWithReferences method in this class: github.com/jduv/AppDomainToolkit/blob/master/AppDomainToolkit/… – Jduv Mar 14 at 14:44

You need to handle the AppDomain.AssemblyResolve or AppDomain.ReflectionOnlyAssemblyResolve events (depending on which load you're doing) in case the referenced assembly is not in the GAC or on the CLR's probing path.

AppDomain.AssemblyResolve

AppDomain.ReflectionOnlyAssemblyResolve

share|improve this answer
So I have to indicate requested assembly manually? Even it is in new AppDomain's AppBase ? Is there a way not to do that? – abatishchev Mar 19 '09 at 13:40

The Key is the AssemblyResolve event raised by the AppDomain.

    [STAThread]
    static void Main(string[] args)
    {
        fileDialog.ShowDialog();
        string fileName = fileDialog.FileName;
        if (string.IsNullOrEmpty(fileName) == false)
        {
            AppDomain.CurrentDomain.AssemblyResolve += CurrentDomain_AssemblyResolve;
            if (Directory.Exists(@"c:\Provisioning\") == false)
                Directory.CreateDirectory(@"c:\Provisioning\");

            assemblyDirectory = Path.GetDirectoryName(fileName);
            Assembly loadedAssembly = Assembly.LoadFile(fileName);

            List<Type> assemblyTypes = loadedAssembly.GetTypes().ToList<Type>();

            foreach (var type in assemblyTypes)
            {
                if (type.IsInterface == false)
                {
                    StreamWriter jsonFile = File.CreateText(string.Format(@"c:\Provisioning\{0}.json", type.Name));
                    JavaScriptSerializer serializer = new JavaScriptSerializer();
                    jsonFile.WriteLine(serializer.Serialize(Activator.CreateInstance(type)));
                    jsonFile.Close();
                }
            }
        }
    }

    static Assembly CurrentDomain_AssemblyResolve(object sender, ResolveEventArgs args)
    {
        string[] tokens = args.Name.Split(",".ToCharArray());
        System.Diagnostics.Debug.WriteLine("Resolving : " + args.Name);
        return Assembly.LoadFile(Path.Combine(new string[]{assemblyDirectory,tokens[0]+ ".dll"}));

    }
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.