How to install

AjaxAnywhere installation

  1. Download the latest binary distribution of AjaxAnywhere
  2. Extract JavaScript file(s) (aa.js) from the binary distibution file into your web application root.
  3. Copy the JAR file to /WEB-INF/lib or your web application
  4. Add AAFilter mapping for dynamic URLs to web.xml. Maske sure that AjaxAnywhere filter in the first one in the chain.
        <filter>
            <filter-name>AjaxAnywhere</filter-name>
            <filter-class>org.ajaxanywhere.AAFilter</filter-class>
        </filter>
    
        <filter-mapping>
            <filter-name>AjaxAnywhere</filter-name>
            <url-pattern>*.jsp</url-pattern>
        </filter-mapping>
        <filter-mapping>
            <filter-name>AjaxAnywhere</filter-name>
            <url-pattern>*.do</url-pattern> <!-- default Struts mapping -->
        </filter-mapping>
        <filter-mapping>
            <filter-name>AjaxAnywhere</filter-name>
            <url-pattern>*.htm</url-pattern> <!-- other framewords mapping-->
        </filter-mapping>
        ...
    
    


  5. See also : quick start documentation