Locally my application works fine using ajaxpro, but on the server I can't seem to figure out 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
Same code works locally, so it must be a IIS7 setting?
edit, 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>
Are you sure that you have the handlers registered properly in the web.config file?
You should have something that looks like the following in your web.config file.
You also need to have the AjaxPro dll in your Bin directory (for a web site, at least).