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 ch...@apache.org on 2005/02/15 12:54:19 UTC

svn commit: r153930 - in webservices/axis/trunk/java/dev/scratch/prototype2/src/samples/userguide/sample3/conf: ./ META-INF/ META-INF/service.xml

Author: chathura
Date: Tue Feb 15 03:54:15 2005
New Revision: 153930

URL: http://svn.apache.org/viewcvs?view=rev&rev=153930
Log:
Confuguration files added

Added:
    webservices/axis/trunk/java/dev/scratch/prototype2/src/samples/userguide/sample3/conf/
    webservices/axis/trunk/java/dev/scratch/prototype2/src/samples/userguide/sample3/conf/META-INF/
    webservices/axis/trunk/java/dev/scratch/prototype2/src/samples/userguide/sample3/conf/META-INF/service.xml

Added: webservices/axis/trunk/java/dev/scratch/prototype2/src/samples/userguide/sample3/conf/META-INF/service.xml
URL: http://svn.apache.org/viewcvs/webservices/axis/trunk/java/dev/scratch/prototype2/src/samples/userguide/sample3/conf/META-INF/service.xml?view=auto&rev=153930
==============================================================================
--- webservices/axis/trunk/java/dev/scratch/prototype2/src/samples/userguide/sample3/conf/META-INF/service.xml (added)
+++ webservices/axis/trunk/java/dev/scratch/prototype2/src/samples/userguide/sample3/conf/META-INF/service.xml Tue Feb 15 03:54:15 2005
@@ -0,0 +1,44 @@
+<service provider="org.apache.axis.testUtils.SimpleJavaProvider" style="xsd:anyURI" contextPath="xsd:anycontextPath" >
+    <java:implementation class="samples.userguide.sample3.server.EchoImpl" xmlns:java="http://ws.apache.org/axis2/deployment/java"/>
+
+    <!-- these are Service Parameters -->
+    <!--
+    <parameter name="para1" locked="xsd:true">10</parameter>
+    <parameter name="para2" locked="xsd:false">Colombo</parameter>
+
+    <module ref="module1"></module>
+    <module ref="module2"></module>
+-->
+
+    <!--  Service TypeMapping -->
+
+
+
+    <!--
+    Phases
+    P1 p2 p3
+    -->
+
+    <inflow>
+        <handler name="LoggingHandler" class="samples.userguide.sample3.server.LoggingHandler">
+        <!--Phase Ordering (e.g. phaseFirst="true") will be introdeced from M2-->
+            <order phase="Logging"/>            
+        </handler>        
+    </inflow>
+
+    <outflow>
+        
+    </outflow>
+
+    <faultflow>
+        <handler name="LoggingHandler" class="samples.userguide.sample3.server.LoggingHandler">
+        <!--Phase Ordering (e.g. phaseFirst="true") will be introdeced from M2-->
+            <order phase="Logging"/>            
+        </handler>
+    </faultflow>
+
+
+    <operation name="echoInt" qname="http://localhost/my:echoInt"/>
+    <operation name="echoString" qname="http://localhost/my:echoString"/>
+    
+</service>
\ No newline at end of file