I'm using c# 4.0 and a console application just for testing, the following code does gives an exception.

AppDomainSetup appSetup = new AppDomainSetup()
        {
            ApplicationName = "PluginsDomain",
            ApplicationBase = AppDomain.CurrentDomain.BaseDirectory,
            PrivateBinPath = @"Plugins",
            ConfigurationFile = AppDomain.CurrentDomain.SetupInformation.ConfigurationFile
        };

        AppDomain appDomain = AppDomain.CreateDomain("PluginsDomain", null, appSetup);

        AssemblyName assemblyName = AssemblyName.GetAssemblyName(System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "Plugins", "sample.dll"));

        Assembly assembly = appDomain.Load(assemblyName); //This gives an exception of File not found

        AppDomain.Unload(appDomain);

I keep getting File not found exception when using Load on my created AppDomain.

Thanks.

link|improve this question

50% accept rate
Try look here: stackoverflow.com/q/658498/735864 – danyolgiax Jul 8 '11 at 18:08
@danyolgiax, the solution provided there doesnt use a new created app domain, he just used Assembly.LoadFrom which i guess it loades it into the current app domain which is not what i want, unless am wrong about something, thnx anyway. – Ahmed Galal Jul 9 '11 at 15:54
feedback

2 Answers

First make sure Plugins is a subdirectory of your AppDomain base path. PrivateBinPath will only work on subdirectories as described here

If that isn't the problem then take a look at your fusion binding logs. Use the fusion log viewer There is also a good Blog Post on that. The fusion logs will tell you where it searched for the assembly. That should tell you if your path is included in the search.

One of the other possibilities is that it is finding your assembly but not one of its dependencies. Again the fusion log viewer will tell you.

link|improve this answer
Thanks for your time, the Plugins folder is a sub-directory of the app domain base directory, but i figured out something, if i copied the dll to the application base directory it works, it doesnt work when its in the private bin path which is the "Plugins" folder. when i used the fusion log it doesnt seem that it searches in the private bin path, do u have any idea why ? – Ahmed Galal Jul 9 '11 at 15:52
feedback
up vote -1 down vote accepted

I think i'v figured out why this happens, thats because the current domain needs to load the assembly too even if your loading the assembly in a diffrent app domain, the current domain needs to know about it and load it, thats because how the .NET was designed.

check here for details.

http://msdn.microsoft.com/en-us/library/36az8x58.aspx

and when i checked the fusion logs, i found that the newly created app domain was successfully able to load the assembly from the private bin path, and the reason why you still get the exception of "File not found", because this exception belongs originally to the current app domain.

that means if you copied the assembly in current application path or to the path where the current domain is probing, you will find that you can load the assembly into your custom domain.

Hope that helps.

link|improve this answer
"This method should be used only to load an assembly into the current application domain. This method is provided as a convenience for interoperability callers who cannot call the static Assembly.Load method." You're doing it wrong. You should be injecting a class across the AD barrier and having that class load the assembly using Assembly.Load or Assembly.LoadFrom. You might as well ditch the other appdomain completely, as you are not isolating the assemblies from your executing AppDomain. – Will Sep 21 '11 at 18:23
This method ? which method ? – Ahmed Galal Sep 27 '11 at 11:47
Its at your link. – Will Sep 27 '11 at 12:59
feedback

Your Answer

 
or
required, but never shown

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