web.xml: Web Application Configuration

<?xml version="1.0" encoding="ISO-8859-1"?>

<!DOCTYPE web-app
  PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
  "http://java.sun.com/j2ee/dtds/web-app_2_2.dtd">

<web-app>
  <context-param>
    <param-name>dbserver</param-name>
    <param-value>mydbhost</param-value>
    <description>
      The Host running our Database
    </description>
  </context-param>
  <context-param>
    <param-name>dbuser</param-name>
    <param-value>elug</param-value>
    <description>
      The Database User
    </description>
  </context-param>
  <servlet>
    <servlet-name>org.apache.cocoon.Cocoon</servlet-name>
    <servlet-class>org.apache.cocoon.Cocoon</servlet-class>
    <init-param>
      <param-name>properties</param-name>
      <param-value>
        WEB-INF/cocoon.properties
      </param-value>
    </init-param>
  </servlet>
  <servlet-mapping>
    <servlet-name>org.apache.cocoon.Cocoon</servlet-name>
    <url-pattern>*.xml</url-pattern>
  </servlet-mapping>
</web-app>