geoserver on JBoss
This tutorial documents how to install various versions of geoserver onto various versions of JBoss.
geoserver 2.7.0 on JBoss AS 5.1
To install geoserver onto JBoss AS 5.1, the following is required:
- Create the file - jboss-classloading.xmlwith the following content then copy it into the- WEB-INFdirectory in the geoserver.war:
<classloading xmlns="urn:jboss:classloading:1.0"
        name="geoserver.war"
        domain="GeoServerDomain">
</classloading>
- Extract the - hsqldb-2.2.8.jarfile from the- WEB-INF/libdirectory from the geoserver.war and copy it as- hsqldb.jarto the- common/libdirectory in the JBoss deployment.
- Add the following text to the - WEB-INF/web.xmlfile in the geoserver.war so that JBoss logging does not end up in the geoserver.log:
<context-param>
        <param-name>RELINQUISH_LOG4J_CONTROL</param-name>
        <param-value>true</param-value>
</context-param>