mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Use context params instead of servlet params, as this may make WAR deployment easier.
git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@1878 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
parent
57bd6ab9df
commit
89ef40ba10
1 changed files with 5 additions and 4 deletions
|
@ -7,14 +7,15 @@
|
||||||
<display-name>WebChat</display-name>
|
<display-name>WebChat</display-name>
|
||||||
<description>Smack-powered WebChat Application</description>
|
<description>Smack-powered WebChat Application</description>
|
||||||
|
|
||||||
|
<context-param>
|
||||||
|
<param-name>host</param-name>
|
||||||
|
<param-value>jivesoftware.com</param-value>
|
||||||
|
</context-param>
|
||||||
|
|
||||||
<!-- Servlets -->
|
<!-- Servlets -->
|
||||||
<servlet>
|
<servlet>
|
||||||
<servlet-name>ChatServlet</servlet-name>
|
<servlet-name>ChatServlet</servlet-name>
|
||||||
<servlet-class>org.jivesoftware.webchat.ChatServlet</servlet-class>
|
<servlet-class>org.jivesoftware.webchat.ChatServlet</servlet-class>
|
||||||
<init-param>
|
|
||||||
<param-name>host</param-name>
|
|
||||||
<param-value></param-value>
|
|
||||||
</init-param>
|
|
||||||
<load-on-startup>1</load-on-startup>
|
<load-on-startup>1</load-on-startup>
|
||||||
</servlet>
|
</servlet>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue