2010-01-24 22:09:50 +01:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
|
|
|
|
<!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>
|
2010-06-05 02:50:18 +02:00
|
|
|
|
|
|
|
<!--+
|
|
|
|
| This forces all the session cookies to default to the root path.
|
|
|
|
| to allow sessions to work even when butterfly is handling
|
|
|
|
| multiple zones.
|
|
|
|
| NOTE: this is jetty-specific, so other web-app servers
|
|
|
|
| might require different parameters.
|
|
|
|
+-->
|
|
|
|
<context-param>
|
|
|
|
<param-name>org.mortbay.jetty.servlet.SessionPath</param-name>
|
|
|
|
<param-value>/</param-value>
|
|
|
|
</context-param>
|
|
|
|
|
2010-01-24 22:09:50 +01:00
|
|
|
<servlet>
|
2010-02-08 00:15:50 +01:00
|
|
|
<servlet-name>gridworks</servlet-name>
|
2010-02-03 03:29:47 +01:00
|
|
|
<servlet-class>com.metaweb.gridworks.GridworksServlet</servlet-class>
|
2010-01-24 22:09:50 +01:00
|
|
|
</servlet>
|
|
|
|
|
|
|
|
<servlet-mapping>
|
2010-02-08 00:15:50 +01:00
|
|
|
<servlet-name>gridworks</servlet-name>
|
2010-06-05 02:50:18 +02:00
|
|
|
<url-pattern>/*</url-pattern>
|
2010-01-24 22:09:50 +01:00
|
|
|
</servlet-mapping>
|
2010-06-05 02:50:18 +02:00
|
|
|
|
2010-01-24 22:09:50 +01:00
|
|
|
</web-app>
|