You are viewing a plain text version of this content. The canonical link for it is here.
Posted to axis-cvs@ws.apache.org by sa...@apache.org on 2006/01/27 01:40:31 UTC

svn commit: r372678 - in /webservices/axis2/trunk/c/deploy/services/math: ./ services.xml

Author: samisa
Date: Thu Jan 26 16:40:27 2006
New Revision: 372678

URL: http://svn.apache.org/viewcvs?rev=372678&view=rev
Log:
added the service.sml for new math service

Added:
    webservices/axis2/trunk/c/deploy/services/math/
    webservices/axis2/trunk/c/deploy/services/math/services.xml

Added: webservices/axis2/trunk/c/deploy/services/math/services.xml
URL: http://svn.apache.org/viewcvs/webservices/axis2/trunk/c/deploy/services/math/services.xml?rev=372678&view=auto
==============================================================================
--- webservices/axis2/trunk/c/deploy/services/math/services.xml (added)
+++ webservices/axis2/trunk/c/deploy/services/math/services.xml Thu Jan 26 16:40:27 2006
@@ -0,0 +1,24 @@
+<service name="math">
+    <parameter name="ServiceClass" locked="xsd:false">libmath.so</parameter>
+
+   <description>
+        This is a testing service, named 'math' to test multiple operations in the same service
+   </description>
+
+    <operation name="add">
+            <messageReceiver class="libaxis2_receivers.so" />
+    </operation>
+
+    <operation name="sub">
+            <messageReceiver class="libaxis2_receivers.so" />
+    </operation>
+
+    <operation name="mul">
+            <messageReceiver class="libaxis2_receivers.so" />
+    </operation>
+
+    <operation name="div">
+            <messageReceiver class="libaxis2_receivers.so" />
+    </operation>
+
+</service>