2003-04-11 04:58:22 +02:00
|
|
|
<?xml version="1.0" encoding="ISO-8859-1"?>
|
|
|
|
|
|
|
|
<!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>WebChat</display-name>
|
|
|
|
<description>Smack-powered WebChat Application</description>
|
|
|
|
|
2003-04-14 19:13:14 +02:00
|
|
|
<context-param>
|
2003-04-11 17:06:24 +02:00
|
|
|
<param-name>host</param-name>
|
|
|
|
<param-value>jivesoftware.com</param-value>
|
2003-04-14 19:13:14 +02:00
|
|
|
</context-param>
|
|
|
|
|
|
|
|
<!-- Session listener -->
|
|
|
|
<listener>
|
|
|
|
<listener-class>org.jivesoftware.webchat.ChatServlet</listener-class>
|
|
|
|
</listener>
|
2003-04-11 17:06:24 +02:00
|
|
|
|
2003-04-11 04:58:22 +02:00
|
|
|
<!-- Servlets -->
|
|
|
|
<servlet>
|
|
|
|
<servlet-name>ChatServlet</servlet-name>
|
|
|
|
<servlet-class>org.jivesoftware.webchat.ChatServlet</servlet-class>
|
|
|
|
<load-on-startup>1</load-on-startup>
|
|
|
|
</servlet>
|
|
|
|
|
|
|
|
<!-- Servlet mappings -->
|
|
|
|
<servlet-mapping>
|
|
|
|
<servlet-name>ChatServlet</servlet-name>
|
|
|
|
<url-pattern>/servlet/ChatServlet/*</url-pattern>
|
|
|
|
</servlet-mapping>
|
|
|
|
|
|
|
|
<!-- Welcome file list -->
|
|
|
|
<welcome-file-list>
|
|
|
|
<welcome-file>index.jsp</welcome-file>
|
|
|
|
<welcome-file>index.html</welcome-file>
|
2003-04-14 19:13:14 +02:00
|
|
|
</welcome-file-list>
|
2003-04-11 04:58:22 +02:00
|
|
|
</web-app>
|