You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by de...@apache.org on 2005/02/22 06:00:51 UTC

svn commit: r154791 - in webservices/axis/trunk/java/modules/deployment/src: java/org/apache/axis/deployment/server.xml samples/deployment/module1/META-INF/module.xml samples/deployment/module2/META-INF/module.xml test-resources/deployment/server.xml

Author: deepal
Date: Mon Feb 21 21:00:48 2005
New Revision: 154791

URL: http://svn.apache.org/viewcvs?view=rev&rev=154791
Log:
removed module phase

Modified:
    webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis/deployment/server.xml
    webservices/axis/trunk/java/modules/deployment/src/samples/deployment/module1/META-INF/module.xml
    webservices/axis/trunk/java/modules/deployment/src/samples/deployment/module2/META-INF/module.xml
    webservices/axis/trunk/java/modules/deployment/src/test-resources/deployment/server.xml

Modified: webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis/deployment/server.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis/deployment/server.xml?view=diff&r1=154790&r2=154791
==============================================================================
--- webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis/deployment/server.xml (original)
+++ webservices/axis/trunk/java/modules/deployment/src/java/org/apache/axis/deployment/server.xml Mon Feb 21 21:00:48 2005
@@ -9,7 +9,6 @@
         <phase name="global"/>
         <phase name="transport"/>
         <phase name="Logging"/>
-        <phase name="module"/>
         <phase name="service"/>
     </phaseOrder>
 </server>

Modified: webservices/axis/trunk/java/modules/deployment/src/samples/deployment/module1/META-INF/module.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/deployment/src/samples/deployment/module1/META-INF/module.xml?view=diff&r1=154790&r2=154791
==============================================================================
--- webservices/axis/trunk/java/modules/deployment/src/samples/deployment/module1/META-INF/module.xml (original)
+++ webservices/axis/trunk/java/modules/deployment/src/samples/deployment/module1/META-INF/module.xml Mon Feb 21 21:00:48 2005
@@ -1,14 +1,14 @@
 <module name="module1" class="module1.java">
     <inflow>
         <handler name="h1" class="org.apache.axis.registry.Handler3">
-            <order phase="module" phaseFirst="true"/>
+            <order phase="global" phaseFirst="true"/>
         </handler>
         <handler name="h2" class="org.apache.axis.registry.Handler3"/>
     </inflow>
 
     <outflow>
         <handler name="h3" class="org.apache.axis.registry.Handler3">
-            <order phase="module"/>
+            <order phase="global"/>
         </handler>
     </outflow>
 

Modified: webservices/axis/trunk/java/modules/deployment/src/samples/deployment/module2/META-INF/module.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/deployment/src/samples/deployment/module2/META-INF/module.xml?view=diff&r1=154790&r2=154791
==============================================================================
--- webservices/axis/trunk/java/modules/deployment/src/samples/deployment/module2/META-INF/module.xml (original)
+++ webservices/axis/trunk/java/modules/deployment/src/samples/deployment/module2/META-INF/module.xml Mon Feb 21 21:00:48 2005
@@ -1,14 +1,14 @@
 <module name="module2" class="module1.java">
     <inflow>
         <handler name="h1" class="org.apache.axis.registry.Handler4">
-            <order phase="module" phaseFirst="true"/>
+            <order phase="global" phaseFirst="true"/>
         </handler>
         <handler name="h2" class="org.apache.axis.registry.Handler4"/>
     </inflow>
 
     <outflow>
         <handler name="h3" class="org.apache.axis.registry.Handler4">
-            <order phase="module"/>
+            <order phase="global"/>
         </handler>
     </outflow>
 
@@ -17,7 +17,7 @@
         </handler>
 
         <handler name="h5" class="org.apache.axis.registry.Handler4">
-            <order phase="module"/>
+            <order phase="global"/>
         </handler>
     </faultflow>
 </module>

Modified: webservices/axis/trunk/java/modules/deployment/src/test-resources/deployment/server.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/modules/deployment/src/test-resources/deployment/server.xml?view=diff&r1=154790&r2=154791
==============================================================================
--- webservices/axis/trunk/java/modules/deployment/src/test-resources/deployment/server.xml (original)
+++ webservices/axis/trunk/java/modules/deployment/src/test-resources/deployment/server.xml Mon Feb 21 21:00:48 2005
@@ -20,7 +20,6 @@
         <phase name="global"/>
         <phase name="transport"/>
         <phase name="Logging"/>
-        <phase name="module"/>
         <phase name="service"/>
     </phaseOrder>
 </server>