You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by bo...@apache.org on 2007/01/16 18:45:37 UTC

svn commit: r496796 - in /incubator/ode/trunk/axis2-examples/src/examples/DynPartner: Main.wsdl Responder.wsdl

Author: boisvert
Date: Tue Jan 16 09:45:36 2007
New Revision: 496796

URL: http://svn.apache.org/viewvc?view=rev&rev=496796
Log:
Fix WSDL embedded schema

Modified:
    incubator/ode/trunk/axis2-examples/src/examples/DynPartner/Main.wsdl
    incubator/ode/trunk/axis2-examples/src/examples/DynPartner/Responder.wsdl

Modified: incubator/ode/trunk/axis2-examples/src/examples/DynPartner/Main.wsdl
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/axis2-examples/src/examples/DynPartner/Main.wsdl?view=diff&rev=496796&r1=496795&r2=496796
==============================================================================
--- incubator/ode/trunk/axis2-examples/src/examples/DynPartner/Main.wsdl (original)
+++ incubator/ode/trunk/axis2-examples/src/examples/DynPartner/Main.wsdl Tue Jan 16 09:45:36 2007
@@ -13,9 +13,11 @@
 
   <import namespace="http://ode/bpel/responder.wsdl" location="Responder.wsdl"/>
 
-  <types>
-    <xsd:element name="result" type="xsd:string"/>
-  </types>
+  <wsdl:types>
+        <xsd:schema targetNamespace="http://ode/bpel/unit-test.wsdl">
+            <xsd:element name="result" type="xsd:string"/>
+        </xsd:schema>
+  </wsdl:types>
 
   <wsdl:message name="ResultMessage">
     <wsdl:part name="ack" element="tns:result"/>

Modified: incubator/ode/trunk/axis2-examples/src/examples/DynPartner/Responder.wsdl
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/axis2-examples/src/examples/DynPartner/Responder.wsdl?view=diff&rev=496796&r1=496795&r2=496796
==============================================================================
--- incubator/ode/trunk/axis2-examples/src/examples/DynPartner/Responder.wsdl (original)
+++ incubator/ode/trunk/axis2-examples/src/examples/DynPartner/Responder.wsdl Tue Jan 16 09:45:36 2007
@@ -11,12 +11,14 @@
         xmlns:wsa="http://www.w3.org/2005/08/addressing"
         xmlns:plnk="http://schemas.xmlsoap.org/ws/2004/03/partner-link/">
 
-  <types>
-    <xsd:element name="dummy" type="xsd:string"/>
-    <xsd:element name="dummy2" type="xsd:string"/>
-    <xsd:element name="acknowledgement" type="xsd:string"/>
-    <xsd:element name="url" type="xsd:string"/>
-  </types>
+  <wsdl:types>
+        <xsd:schema targetNamespace="http://ode/bpel/responder.wsdl">
+            <xsd:element name="dummy" type="xsd:string"/>
+            <xsd:element name="dummy2" type="xsd:string"/>
+            <xsd:element name="acknowledgement" type="xsd:string"/>
+            <xsd:element name="url" type="xsd:string"/>
+        </xsd:schema>
+  </wsdl:types>
 
   <wsdl:message name="DummyMessage">
     <wsdl:part name="payload" element="tns:dummy"/>