mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-05 08:05:58 +01:00
03311272ce
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1893 b35dd754-fafc-0310-a699-88a17e54d16e
38 lines
No EOL
1.2 KiB
XML
38 lines
No EOL
1.2 KiB
XML
<?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>
|
|
|
|
<context-param>
|
|
<param-name>host</param-name>
|
|
<param-value>jivesoftware.com</param-value>
|
|
</context-param>
|
|
|
|
<!-- Session listener -->
|
|
<listener>
|
|
<listener-class>org.jivesoftware.webchat.ChatServlet</listener-class>
|
|
</listener>
|
|
|
|
<!-- 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>
|
|
</welcome-file-list>
|
|
</web-app> |