Languages

The application is shipped as a webarchive file (WAR). Every application server or servlet container has its own way how to install a WAR archive. You should have a look at the documentation of your servlet container / application server.

Note that no JDBC driver is shipped with the application, you have to provide them seperately on your own.

  1. A servlet container with servlet specification 2.3 and JSP 1.1. (or J2EE 1.3)

  2. JDK 1.3 or upwards. If you want to use JAAS, JDK 1.4 is recommended. See Section 3.4, “Login and User Authentication” for more details.

  3. A JDBC complient database driver supporting your database. Check your database documentation or webpage for additional information. E.g. the JDBC driver supporting free databases like MySQL can be downloaded directly from their webpage.

[Note] Note

You can use even a container with servlet spec 2.2 if you don't need special character encoding for UTF-8 e.g. japanese, russian or german mixed characters on a form which is done via a servlet filter. This filter used in the web.xml file is the only dependency to the servlet 2.3 specification.

Before you can use the application you need to finish the steps described in the Chapter 3, Configuration section.