Using aspose.cells with a .NET servicedcomponent (Com+)

I have a Com+ application written in .NET (ServicedComponent) that uses aspose.cells for .NET; if possible, I would like to NOT put the aspose.cells.dll into the GAC, but rather use a local/private copy, as we would like to keep the deployment process as simple as possible (just copy the files to a directory). But the only way I was able to avoid a “file not found” was to use the GAC; I have tried putting Aspose.Cells into Application private Directory, but that does not seem to do it. Is there any way to do what I want?

Hi,

Thanks for your inquiry.

Could you try to register Aspose.Cells.dll using the following command line (with regasm .NET utility) putting the component into your local directory if it works fine.

e.g..,

regasm Aspose.Cells.dll /codebase

For reference, please check: http://www.aspose.com/documentation/file-format-components/aspose.cells-for-.net-and-java/accessing-component-from-com-clients.html

Thank you.