Problems implementing Global Assembly

K

kashif456

Hi,

I am trying to deploy a third party object into GAC and seeing some
errors. Below is the code I have added in web.config

Code:
<httpHandlers>
<add verb="*" path="LanapCaptchaImage.aspx" type="Lanap.BotDetect,
Lanap.BotDetect.ImageHandler, Version=1.5.3.0, Culture=neutral,
PublicKeyToken=bb429daedd8c99a7" validate="true" />

</httpHandlers>



The error I get is:
File or assembly name Lanap.BotDetect.ImageHandler, or one of its
dependencies, was not found.

Any help would be appreciated.
 
V

Vadym Stetsyak

Hello, (e-mail address removed)!

k> Hi,

k> I am trying to deploy a third party object into GAC and seeing some
k> errors. Below is the code I have added in web.config

k> Code:
k> <httpHandlers>
k> <add verb="*" path="LanapCaptchaImage.aspx" type="Lanap.BotDetect,
k> Lanap.BotDetect.ImageHandler, Version=1.5.3.0, Culture=neutral,
k> PublicKeyToken=bb429daedd8c99a7" validate="true" />

k> </httpHandlers>

k> The error I get is:
k> File or assembly name Lanap.BotDetect.ImageHandler, or one of its
k> dependencies, was not found.


How do you add assembly into the GAC?
Did you check if assembly is in the GAC?

If using gacutil tool then you can chek if assembly is in the gac by
execyting followinf command on the command prompt:

gacutil /l [assemblyName]


--
Regards, Vadym Stetsyak
www: http://vadmyst.blogspot.com
 
K

kashif456

Hi,

Thank you for the response. I have used the configuration tool to add
it to the assembly folder. I can view the folder and verify the entry.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top