|
| Configuration error when adding a HttpHandler |
 |
Thu, 20 Mar 2008 07:56:53 +000 |
Hi,
I created a custom httphandler class and when i add the same in web.config i get
a error message
"Could not load type myHTTPHandler.CheckHTTPRequests from assembly
System.Web, Version=1.0.5000.0, Culture=neutral,
PublicKeyToken=b03f5f7f11d50a3a."
i have placed the myHTTPHandler.dll in the bin folder of my web
application...i'm confused why its trying to load the class from system.web.
This is what i've added in my web.config
<httpHandlers>
<addverb="*"path="*.*"type="myHTTPHandler.CheckHTTPR
equests"/>
</httpHandlers>
Thanks in advance for you help!!
|
| Post Reply
|
| Re: Configuration error when adding a HttpHandler |
 |
Thu, 20 Mar 2008 17:51:29 +000 |
Hi,
you need to tell the assembly
type="myHTTPHandler.CheckHTTPRequests, myHTTPHandler"
e.g "namespace.typename, assembly"
|
| Post Reply
|
|
|
|
|
|
|
|
|
|