In simple terms - I have a .net library A.dll. A.dll uses B.dll & C.dll.
Both B & C are not .Net Libraries. How do I use A.dll in my web app?
So I have the dll file - Jedox.Palo.Comm.dll (A) that I have added as a reference to a ASP.NET Webapp. This DLL in turn uses 2 more files, 1. libpalo_ng.dll (B) & 2. libpalo2.dll (C). These two libpalo dlls are not necessarily COM components/assemblies. So they can't be added directly as a reference.
Instead I have to place them in the same folder as the Jedox..dll In normal appls, forms etc the folder is Debug/bin. But in webapps, where should I place these dll files, since it has to be in the same folder as the Jedox...dll
Also, creating a new folder bin, and putting all three dlls there and adding references doesn't work for some reason! Thanks in advace!!
Indrajit