OnTheAnvil
Well-known member
I need a little help figuring out how to deploy a custom httpHandler on a remote server. Ive created a class that implements IHttpHandler. Ive added the following lines to my web.config...
<httpHandlers>
<add verb="*" path="*.sample"
type="HelloWorldHandler, HelloWorldHandler"/>
</httpHandlers>
and Ive 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 cant 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 Ive used them on other webservers before so this has to work somehow. Any thoughts?
Thanks in advance,
OnTheAnvil
<httpHandlers>
<add verb="*" path="*.sample"
type="HelloWorldHandler, HelloWorldHandler"/>
</httpHandlers>
and Ive 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 cant 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 Ive used them on other webservers before so this has to work somehow. Any thoughts?
Thanks in advance,
OnTheAnvil