vote up 1 vote down star

Hi! My asp.net application loads an assembly and creates a class instance from an object within it. The assembly itself has a reference to a dll called "Aspose.Cells.dll" which it can access without any problems and is located on the same path as the assembly file itself. However, when i make a method call to one of its methods i get this error:

Could not load file or assembly 'Aspose.Cells, Version=4.1.2.0, Culture=neutral, PublicKeyToken=9a40d5a4b59e5256' or one of its dependencies.

I figure that i need to make my asp.net application reference this dll as well but everything ive tried so far has failed. The assembly dll which is loaded is not located within the root of the web application and im hoping that it doesnt have to be.

I can load the assembly like this: Assembly asm = Assembly.LoadFile(@"D:\Dev\EasyFlow\Plugins\ImportExportLibrary\bin\Debug\Aspose.Cells.dll");

But i can not use it like this: AppDomain newDomain = AppDomain.CreateDomain("testAspose"); Assembly asm = newDomain.Load(System.IO.File.ReadAllBytes(@"D:\Dev\EasyFlow\Plugins\ImportExportLibrary\bin\Debug\Aspose.Cells.dll"));

Perhaps theres a better way to do it?

flag

5 Answers

vote up 1 vote down check

There are a few ways to do this. Have you looked at the Microsoft Knowledge Base article?

http://support.microsoft.com/kb/837908

It provides a pretty good step-by-step method of how to do this.

link|flag
vote up 0 vote down

You can copy the dependent assembly into the Bin folder or install it in the GAC.

link|flag
vote up 0 vote down

I'm thinking you can add assembly references to the web.config, in the <compilation> section, like so:

<compilation debug="true">
  <assemblies>
     <add assembly="Aspose.Cells, Version=4.1.2.0, Culture=neutral,  PublicKeyToken=9a40d5a4b59e5256"/>
  </assemblies>
</compilation>

I am not altogether certain this will work, and it may require a corresponding entry to web.config in a <configSections> node under <configuration>.

link|flag
vote up 0 vote down

Thanks for your replies. I forgot to mention that i cannot copy the assemblies to the bin folder or the GAC because i want it to work as a plugin system where assemblies can be replaced easily by changing the path to assemblies in a config file and not having to manually copy files into the main project.

However, the AssemblyResolve event seems interesting and i will give it a try later.

link|flag
Stack overflow tip, please do not use answers to further explain or in response to answers. Either edit your original post, add a comment to your question or put a comment in the answer. Also please remember to upvote any answer you have found helpful, and accept any answer you use. – David Waters Apr 30 at 12:23
vote up 0 vote down

I think when you change/replace the component file e.g Aspose.Cells.dll for your project but don't update the assembly reference, this error might occur sometimes. In VS.NET, you need to Remove the older assembly reference first and then try Add Reference to your new Aspose.Cells.dll file located at your desired path to check if it works fine.

link|flag

Your Answer

Get an OpenID
or

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