I have the httphandler on shared webhosting. It works.
The httphandler webapp (virtual) dir of this httphandler does not have web.config and the whole shared user's website has web.config with only one uncommented statement:
<compilation defaultLanguage="c#" debug="false"/>
Now, I change it to:
<system.web>
<urlMappings enabled="true">
<add url="~/CheckLoad" mappedUrl="~/BackupLicense.ashx?key=CheckLoad"/>
<compilation defaultLanguage="c#" debug="false">
</compilation>
</system.web>
This(*) works locally (on VS2008 internal webserver) but not on shared hosting.
What do I miss? (*) means calling [1a], which works only locally but on shared hosting it gives "The page not found" "HTTP Error 404"
[1a] Calling as: http://www.MySharedSite.com/CheckLoad (additionally to always and evertwhere working [1b] htt p:// www. MySharedSite. com/ BackupLicense.ashx ?key=CheckLoad