summaryrefslogtreecommitdiffstats
path: root/sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF
diff options
context:
space:
mode:
Diffstat (limited to 'sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF')
-rw-r--r--sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/context.xml5
-rw-r--r--sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/web.composite34
-rw-r--r--sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/web.xml30
3 files changed, 0 insertions, 69 deletions
diff --git a/sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/context.xml b/sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/context.xml
deleted file mode 100644
index 71838e0728..0000000000
--- a/sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/context.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<Context>
- <!-- <Loader className="org.atmosphere.util.AtmosphereClassloader"/> -->
- <Loader delegate="true"/>
-</Context>
diff --git a/sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/web.composite b/sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/web.composite
deleted file mode 100644
index 8861ac3abe..0000000000
--- a/sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/web.composite
+++ /dev/null
@@ -1,34 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
--->
-<composite xmlns="http://docs.oasis-open.org/ns/opencsa/sca/200912"
- xmlns:tuscany="http://tuscany.apache.org/xmlns/sca/1.1"
- targetNamespace="http://samples"
- name="Stock">
-
- <component name="AtmosphereServlet">
- <implementation.web web-uri=""/>
- <reference name="service" target="StockService"/>
- </component>
-
- <component name="StockService">
- <implementation.java class="org.apache.tuscany.sample.comet.StockServiceImpl"/>
- </component>
-
-</composite>
diff --git a/sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/web.xml b/sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/web.xml
deleted file mode 100644
index 3f8eac6d96..0000000000
--- a/sca-java-2.x/contrib/samples/stock-comet-jquery/src/main/webapp/WEB-INF/web.xml
+++ /dev/null
@@ -1,30 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<web-app version="3.0" xmlns="http://java.sun.com/xml/ns/javaee"
- xmlns:j2ee="http://java.sun.com/xml/ns/javaee"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_3.0.xsd">
- <description>Apache Tuscany Stock Comet jQuery Sample</description>
- <display-name>Apache Tuscany Stock Comet jQuery Sample</display-name>
-
- <listener>
- <listener-class>org.apache.tuscany.sca.host.webapp.TuscanyContextListener</listener-class>
- </listener>
-
- <servlet>
- <description>AtmosphereServlet</description>
- <servlet-name>AtmosphereServlet</servlet-name>
- <servlet-class>org.atmosphere.cpr.AtmosphereServlet</servlet-class>
- <async-supported>true</async-supported>
- <load-on-startup>0</load-on-startup>
- <init-param>
- <param-name>com.sun.jersey.config.property.packages</param-name>
- <param-value>org.apache.tuscany.sample.comet</param-value>
- </init-param>
- </servlet>
-
- <servlet-mapping>
- <servlet-name>AtmosphereServlet</servlet-name>
- <url-pattern>/*</url-pattern>
- </servlet-mapping>
-</web-app>
-