Locally, my application works fine using ajaxpro, but on the server I can not understand why it is not working.
using firebug I have the following erros:
GET prototype.ashx 404 not found GET core.ashx 404 not found GET ms.ashx 404 not found
The same code works locally, so should it be an IIS7 setup?
change my web.config
<httpHandlers> <add verb="POST,GET" path="ajaxpro/*.ashx" type="AjaxPro.AjaxHandlerFactory, AjaxPro"/> </httpHandlers>
also have:
<location path="ajaxpro"> <system.web> <httpHandlers> <add verb="POST,GET" path="*.ashx" type="AjaxPro.AjaxHandlerFactory, AjaxPro"/> </httpHandlers> <authorization> <allow users="*"/> </authorization> </system.web> </location>
and
<location path="ajaxpro/prototype.ashx"> <system.web> <authorization> <allow users="*"/> </authorization> </system.web> </location> <location path="ajaxpro/core.ashx"> <system.web> <authorization> <allow users="*"/> </authorization> </system.web> </location> <location path="ajaxpro/converter.ashx"> <system.web> <authorization> <allow users="*"/> </authorization> </system.web> </location>
ajaxpro
popopo
source share