Hello, I've a HttpHandler. It's in /bin directory. This HttpHandler must execute code from an other DLL (work.dll). This dll (work.dll) could not be in /bin or in GAC (for personal reason) How can I configure my Web application ? I can put the HttpHandler in
the same directory of work.dll. In this case, how can I configure my Web application ? Thanx.
hi, what about putting the HttpHandler assembly in GAC. This will enable you to put work.dll and the HttpHandler DLL in the same directory (other than bin) The requirement is that both of your assemblies (HttpHandler and work) must have strong name, since in
order to be placed in GAC, an assembly must have a strong name and all the assemblies it references must also have strong names. GOOD LUCK.
You can use assembly.load or assembly.loadFromfile to load the work.dll. This will load the assembly using reflection. no GAC required, nor strong names.
Did the chicken really cross the road, or did the road move beneath the chicken?
You don't need to do anything extra providing the version numbers haven't changed. The framework will search for the work.dll in the GAC first then in the \bin folder. It won't require any extra config.
None
0 Points
1 Post
Dll not in /bin and not in GAC
May 05, 2004 06:42 AM|Yaume|LINK
None
0 Points
36 Posts
Re: Dll not in /bin and not in GAC
May 09, 2004 05:45 PM|JekaM|LINK
Member
20 Points
297 Posts
Re: Dll not in /bin and not in GAC
May 10, 2004 08:32 PM|DevilDog74|LINK
Member
81 Points
1847 Posts
Re: Dll not in /bin and not in GAC
May 19, 2004 08:03 AM|pkr|LINK