summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/contrib/samples/stock-comet/src/main/webapp/WEB-INF/web.xml
diff options
context:
space:
mode:
authorfmoga <fmoga@13f79535-47bb-0310-9956-ffa450edef68>2010-08-02 20:27:46 +0000
committerfmoga <fmoga@13f79535-47bb-0310-9956-ffa450edef68>2010-08-02 20:27:46 +0000
commit76e64f8719a90867fa0f8157c4e66e75ccfc8481 (patch)
tree2a6cbe447c1eaa14d980e2669c4552a36faa31a8 /sca-java-2.x/contrib/samples/stock-comet/src/main/webapp/WEB-INF/web.xml
parent1491d3d1338236d1dfba96aa2387075c6a74dbb3 (diff)
Updated the stock sample to use the comet binding implementation.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@981678 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r--sca-java-2.x/contrib/samples/stock-comet/src/main/webapp/WEB-INF/web.xml32
1 files changed, 1 insertions, 31 deletions
diff --git a/sca-java-2.x/contrib/samples/stock-comet/src/main/webapp/WEB-INF/web.xml b/sca-java-2.x/contrib/samples/stock-comet/src/main/webapp/WEB-INF/web.xml
index 4a534c043d..66c2ee4480 100644
--- a/sca-java-2.x/contrib/samples/stock-comet/src/main/webapp/WEB-INF/web.xml
+++ b/sca-java-2.x/contrib/samples/stock-comet/src/main/webapp/WEB-INF/web.xml
@@ -28,38 +28,8 @@
<listener>
<listener-class>org.apache.tuscany.sca.host.webapp.TuscanyContextListener</listener-class>
</listener>
-
- <servlet>
- <description>CometServlet</description>
- <servlet-name>CometServlet</servlet-name>
- <servlet-class>org.atmosphere.cpr.MeteorServlet</servlet-class>
- <async-supported>true</async-supported>
- <init-param>
- <param-name>org.atmosphere.servlet</param-name>
- <param-value>sample.CometServlet</param-value>
- </init-param>
- <init-param>
- <param-name>org.apache.tuscany.comet.scope</param-name>
- <param-value>request</param-value>
- <!-- <param-value>application</param-value> -->
- <!-- <param-value>vm</param-value> -->
- </init-param>
- <!--
- <init-param>
- <param-name>org.apache.tuscany.comet.transport</param-name>
- <param-value>http-streaming</param-value>
- <param-value>long-pooling</param-value>
- <param-value>websocket</param-value>
- </init-param>
- -->
- <load-on-startup>0</load-on-startup>
- </servlet>
- <servlet-mapping>
- <servlet-name>CometServlet</servlet-name>
- <url-pattern>/comet</url-pattern>
- </servlet-mapping>
- <welcome-file-list id="WelcomeFileList">
+ <welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>