Custom HTTPHandler

OnTheAnvil

Regular
Joined
Nov 4, 2003
Messages
92
Location
Columbus, Ohio, USA
I need a little help figuring out how to deploy a custom httpHandler on a remote server. I've created a class that implements IHttpHandler. I've added the following lines to my web.config...

<httpHandlers>
<add verb="*" path="*.sample"
type="HelloWorldHandler, HelloWorldHandler"/>
</httpHandlers>


and I've added the .Sample extension using IIS. Everything works great on my developement machine. The problem is how do I deploy this to a client server that I can't configure IIS on? Specifically how can I do this for a website hosted with a standard hosting company like GoDaddy? Is this a complete loss? ActiveReports uses custom handlers just like this for their reports and I've used them on other webservers before so this has to work somehow. Any thoughts?

Thanks in advance,
OnTheAnvil
 
Back
Top