Menu

Installation

Chester (Carlos D. Nascimento)
There is a newer version of this page. You can find it here.

To add this library to your project:

  • Download the latest version (
    simpleyql-
    

<version>

    .jar

);

  • Add it to your classpath (and/or
    WEB-INF/lib
    

);

  • Map the callback servlet by adding the following lines to your
    web.xml
    

file:

    &lt;servlet&gt;
        &lt;servlet-name&gt;simpleyqlcallback&lt;/servlet-name&gt;
        &lt;servlet-class&gt;com.simpleyql.CallbackServlet&lt;/servlet-class&gt;
    &lt;/servlet&gt;
    &lt;servlet-mapping&gt;
        &lt;servlet-name&gt;simpleyqlcallback&lt;/servlet-name&gt;
        &lt;url-pattern&gt;/simpleyqlcallback&lt;/url-pattern&gt;
    &lt;/servlet-mapping&gt;

That's it - now you are ready to [Usage_use] it in your application!