HTTP Handler not executed

W

wwwmike

Hello everybody.

I developed a simple HTTP Handler on my local machine WIN XP and the
Handler get called. Everyting worked fine

However, when I moved sources to my hosting provider the HTTP Handler
did not work anymore. This time I just got an error message. "HTTP 404
- File not found"

URL Example:http://www.mypage.com/images/picture_123.gif

Can my provider restrict HTTP Handlers in the machine.config file. So
far I havent heard anything from my provider.

***Web.config***

....
<httpHandlers>
<add verb="*" path="picture_*.gif" type="notification,App_Code"/>
</httpHandlers>
....

****App_Code/Notification.vb*****

Imports Microsoft.VisualBasic
Imports helper
Imports System
Imports System.Web

Public Class notification : Implements IHttpHandler

Public Sub ProcessRequest(ByVal context As HttpContext) Implements
IHttpHandler.ProcessRequest


...do some processing here

End Sub

Public ReadOnly Property IsReusable() As Boolean Implements
IHttpHandler.IsReusable
Get
Return False
End Get
End Property
 

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

Members online

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,072
Latest member
trafficcone

Latest Threads

Top