<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- edited with XML Spy v3.0.7 NT (http://www.xmlspy.com) by pazifik (uma) -->
<!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>
    <display-name>DeepMatrix Server and Http Tunneling Servlet</display-name>
    <servlet>
        <servlet-name>deepmatrix</servlet-name>
        <servlet-class>matrix.server.MatrixServlet</servlet-class>
        <init-param>                   
            <!--This parameter tells the Matrix Daemon, where to find the 
                configuration file. If this is a relative path, it is
                used relative to the web application directory.-->
            <param-name>rcfile</param-name>
            <param-value>matrixrc</param-value>
        </init-param>
        <init-param>
            <!--This parameter defines the port to connect to. It overrides the
                definition in the configuration file.-->
        	<param-name>port</param-name>
            <param-value>6666</param-value>
    	</init-param>
        <init-param>
            <!--Defines the loglevel for logging output. This is not for the
                servlet output, but the regular DeepMatrix logfile. 
                Valid levels are 0 to 3.-->
            <param-name>loglevel</param-name>
            <param-value>3</param-value>
        </init-param>
        <load-on-startup>0</load-on-startup>
    </servlet>
	<servlet-mapping>
		<servlet-name>deepmatrix</servlet-name>
		<url-pattern>/deepmatrix</url-pattern>
	</servlet-mapping>
	<session-config>
        <!-- Session timeout after 5 minutes. The client tries to connect
             every second, so this should be long enough indeed. -->
		<session-timeout>1</session-timeout>
	</session-config>
</web-app>

