devdaily home | apple | java | perl | unix | directory | blog

What this is

This file is included in the DevDaily.com "Java Source Code Warehouse" project. The intent of this project is to help you "Learn Java by Example" TM.

Other links

The source code

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE web-app
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    "http://java.sun.com/dtd/web-app_2_3.dtd">

<web-app>
    <display-name>JForum - Powering Communities
    <description>Open Source Java Forum Software
    
    <listener>
    	<listener-class>net.jforum.ForumSessionListener
    </listener>   

    <servlet>
		<servlet-name>jforum
		<servlet-class>net.jforum.JForum
		
		<init-param>
			<param-name>development
			<param-value>true
		</init-param>
    </servlet>
    
    <servlet>
    	<servlet-name>install
    	<servlet-class>net.jforum.InstallServlet
    	
    	<init-param>
			<param-name>development
			<param-value>true
		</init-param>
    </servlet>
    
    <!-- SERVLETS -->
    <servlet-mapping>
    	<servlet-name>install
    	<url-pattern>/install/install.page
    </servlet-mapping>
    
	<servlet-mapping>
    	<servlet-name>jforum
    	<url-pattern>*.page
    </servlet-mapping>

    <!-- SESSION -->
    <session-config>
    	<session-timeout>10
    </session-config>
    
	<welcome-file-list>
		<welcome-file>index.htm
	</welcome-file-list> 
</web-app>




Copyright 1998-2008 Alvin Alexander
All Rights Reserved.
 
devdaily.com is based in louisville, kentucky, and this web site is hosted by godaddy.com