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 nt...@apache.org on 2007/03/22 02:21:06 UTC

svn commit: r521066 - /webservices/axis2/trunk/java/modules/jaxws/test-resources/wsdl/rpclitenum.wsdl

Author: nthaker
Date: Wed Mar 21 18:21:05 2007
New Revision: 521066

URL: http://svn.apache.org/viewvc?view=rev&rev=521066
Log:
Axis2-2351
Adding missing wsdl file from previous patch.

Added:
    webservices/axis2/trunk/java/modules/jaxws/test-resources/wsdl/rpclitenum.wsdl

Added: webservices/axis2/trunk/java/modules/jaxws/test-resources/wsdl/rpclitenum.wsdl
URL: http://svn.apache.org/viewvc/webservices/axis2/trunk/java/modules/jaxws/test-resources/wsdl/rpclitenum.wsdl?view=auto&rev=521066
==============================================================================
--- webservices/axis2/trunk/java/modules/jaxws/test-resources/wsdl/rpclitenum.wsdl (added)
+++ webservices/axis2/trunk/java/modules/jaxws/test-resources/wsdl/rpclitenum.wsdl Wed Mar 21 18:21:05 2007
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<wsdl:definitions targetNamespace="http://rpclit.test.org" 
+  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
+  xmlns:tns="http://rpclit.test.org" 
+  xmlns:xsd="http://www.w3.org/2001/XMLSchema" 
+  xmlns:wsdlsoap="http://schemas.xmlsoap.org/wsdl/soap/" 
+  xmlns:intf="http://schema.rpclit.test.org" 
+  xmlns:impl="http://schema.rpclit.test.org" 
+  xmlns:apachesoap="http://xml.apache.org/xml-soap" 
+  xmlns="http://schemas.xmlsoap.org/wsdl/">
+
+  <types>
+    <schema xmlns="http://www.w3.org/2001/XMLSchema" 
+      targetNamespace="http://schema.rpclit.test.org" 
+      xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+      <!-- <element name="elementString"> -->
+        <simpleType name="elementString">
+          <restriction base="xsd:string">
+            <enumeration value="A"/>
+            <enumeration value="B"/>
+            <enumeration value="C"/>
+          </restriction>
+        </simpleType>
+      <!-- </element> -->
+    </schema>
+  </types>
+
+  <wsdl:message name="echoStringRequest">
+    <wsdl:part name="pString" type="intf:elementString"/>
+  </wsdl:message>
+  <wsdl:message name="echoStringResponse">
+    <wsdl:part name="pString" type="intf:elementString"/>
+  </wsdl:message>
+
+  <wsdl:portType name="PortType">
+    <wsdl:operation name="echoString">
+      <wsdl:input name="echoStringRequest" message="tns:echoStringRequest"/>
+      <wsdl:output name="echoStringResponse" message="tns:echoStringResponse"/>
+    </wsdl:operation>
+  </wsdl:portType>
+
+  <wsdl:binding name="Binding" type="tns:PortType">
+    <wsdlsoap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
+    <wsdl:operation name="echoString">
+      <wsdlsoap:operation soapAction=""/>
+      <wsdl:input name="echoStringRequest">
+        <wsdlsoap:body
+          namespace="http://rpclit.test.org"
+          use="literal"/>
+      </wsdl:input>
+      <wsdl:output name="echoStringResponse">
+        <wsdlsoap:body
+          namespace="http://rpclit.test.org"
+          use="literal"/>
+      </wsdl:output>
+    </wsdl:operation>
+  </wsdl:binding>
+
+  <wsdl:service name="Service">
+    <wsdl:port name="Port" binding="tns:Binding">
+      <wsdlsoap:address location="http://localhost:8080/axis2/services/RPCLitEnumService"/>
+    </wsdl:port>
+  </wsdl:service>
+
+  
+</wsdl:definitions>



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