You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by lr...@apache.org on 2007/05/21 19:41:59 UTC

svn commit: r540208 - in /incubator/tuscany/java/sca/samples: chat-webapp/src/main/webapp/WEB-INF/web.xml das-service-web/src/main/webapp/WEB-INF/web.xml helloworld-jsonrpc/src/main/webapp/WEB-INF/web.xml

Author: lresende
Date: Mon May 21 10:41:59 2007
New Revision: 540208

URL: http://svn.apache.org/viewvc?view=rev&rev=540208
Log:
Applying the same changes from TUSCANY-1294 to remaining web projects.

Modified:
    incubator/tuscany/java/sca/samples/chat-webapp/src/main/webapp/WEB-INF/web.xml
    incubator/tuscany/java/sca/samples/das-service-web/src/main/webapp/WEB-INF/web.xml
    incubator/tuscany/java/sca/samples/helloworld-jsonrpc/src/main/webapp/WEB-INF/web.xml

Modified: incubator/tuscany/java/sca/samples/chat-webapp/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/chat-webapp/src/main/webapp/WEB-INF/web.xml?view=diff&rev=540208&r1=540207&r2=540208
==============================================================================
--- incubator/tuscany/java/sca/samples/chat-webapp/src/main/webapp/WEB-INF/web.xml (original)
+++ incubator/tuscany/java/sca/samples/chat-webapp/src/main/webapp/WEB-INF/web.xml Mon May 21 10:41:59 2007
@@ -20,13 +20,7 @@
 <web-app>
     <display-name>Tuscany Chat Sample</display-name>
 
-    <welcome-file-list id="WelcomeFileList">
-        <welcome-file>chat.html</welcome-file>
-    </welcome-file-list>
-
-
     <!-- the Tuscany system listener and servlet -->
-    
     <listener>
        <listener-class>org.apache.tuscany.sca.webapp.TuscanyContextListener</listener-class>
     </listener>
@@ -40,5 +34,9 @@
        <servlet-name>TuscanyServlet</servlet-name>
        <url-pattern>/SCA/*</url-pattern>
     </servlet-mapping>
+
+    <welcome-file-list id="WelcomeFileList">
+        <welcome-file>chat.html</welcome-file>
+    </welcome-file-list>
 
 </web-app>

Modified: incubator/tuscany/java/sca/samples/das-service-web/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/das-service-web/src/main/webapp/WEB-INF/web.xml?view=diff&rev=540208&r1=540207&r2=540208
==============================================================================
--- incubator/tuscany/java/sca/samples/das-service-web/src/main/webapp/WEB-INF/web.xml (original)
+++ incubator/tuscany/java/sca/samples/das-service-web/src/main/webapp/WEB-INF/web.xml Mon May 21 10:41:59 2007
@@ -21,15 +21,15 @@
 Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
 
 <web-app>
+
     <display-name>Tuscany DAS Service Client Application</display-name>
 
+    <listener>
+        <listener-class>org.apache.tuscany.sca.webapp.TuscanyContextListener</listener-class>
+    </listener>
+
     <welcome-file-list id="WelcomeFileList">
         <welcome-file>Company.jsp</welcome-file>
     </welcome-file-list>
 
-    <!--  SCA Related configuration -->
-    <listener>
-     <listener-class>org.apache.tuscany.sca.webapp.TuscanyContextListener</listener-class>
-    </listener>
-    <!--  END of SCA Related configuration -->
 </web-app>

Modified: incubator/tuscany/java/sca/samples/helloworld-jsonrpc/src/main/webapp/WEB-INF/web.xml
URL: http://svn.apache.org/viewvc/incubator/tuscany/java/sca/samples/helloworld-jsonrpc/src/main/webapp/WEB-INF/web.xml?view=diff&rev=540208&r1=540207&r2=540208
==============================================================================
--- incubator/tuscany/java/sca/samples/helloworld-jsonrpc/src/main/webapp/WEB-INF/web.xml (original)
+++ incubator/tuscany/java/sca/samples/helloworld-jsonrpc/src/main/webapp/WEB-INF/web.xml Mon May 21 10:41:59 2007
@@ -22,25 +22,24 @@
 Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
 <web-app>
 
-
-  <display-name>Tuscany sample HelloWorld JSON-RPC</display-name>
-
-    <welcome-file-list id="WelcomeFileList">
-        <welcome-file>HelloWorldJSONRPC.html</welcome-file>
-    </welcome-file-list>  
+    <display-name>Tuscany sample HelloWorld JSON-RPC</display-name>
     
-  <listener>
-     <listener-class>org.apache.tuscany.sca.webapp.TuscanyContextListener</listener-class>
-  </listener>
-
+    <listener>
+        <listener-class>org.apache.tuscany.sca.webapp.TuscanyContextListener</listener-class>
+    </listener>
 
-<servlet>
-       <servlet-name>TuscanyServlet</servlet-name>
-       <servlet-class>org.apache.tuscany.sca.webapp.TuscanyServlet</servlet-class>
+    <servlet>
+        <servlet-name>TuscanyServlet</servlet-name>
+        <servlet-class>org.apache.tuscany.sca.webapp.TuscanyServlet</servlet-class>
     </servlet>
  
     <servlet-mapping>
-       <servlet-name>TuscanyServlet</servlet-name>
-       <url-pattern>/services/*</url-pattern>
+        <servlet-name>TuscanyServlet</servlet-name>
+        <url-pattern>/services/*</url-pattern>
     </servlet-mapping>
+
+    <welcome-file-list id="WelcomeFileList">
+        <welcome-file>HelloWorldJSONRPC.html</welcome-file>
+    </welcome-file-list>  
+
 </web-app>



---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-commits-help@ws.apache.org