Author: mriou
Date: Tue Aug 29 15:28:47 2006
New Revision: 438266

URL: http://svn.apache.org/viewvc?rev=438266&view=rev
Log:
WSDL import locations were still like urn://file.wsdl which doesn't make much 
sense anymore.

Modified:
    
incubator/ode/trunk/axis2-examples/src/examples/DynPartner/DynPartnerMain.bpel
    
incubator/ode/trunk/axis2-examples/src/examples/DynPartner/DynPartnerResponder.bpel
    incubator/ode/trunk/axis2-examples/src/examples/HelloWorld2/HelloWorld2.bpel
    incubator/ode/trunk/axis2-examples/src/examples/MagicSession/Main.bpel
    incubator/ode/trunk/axis2-examples/src/examples/MagicSession/Responder.bpel

Modified: 
incubator/ode/trunk/axis2-examples/src/examples/DynPartner/DynPartnerMain.bpel
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/axis2-examples/src/examples/DynPartner/DynPartnerMain.bpel?rev=438266&r1=438265&r2=438266&view=diff
==============================================================================
--- 
incubator/ode/trunk/axis2-examples/src/examples/DynPartner/DynPartnerMain.bpel 
(original)
+++ 
incubator/ode/trunk/axis2-examples/src/examples/DynPartner/DynPartnerMain.bpel 
Tue Aug 29 15:28:47 2006
@@ -10,7 +10,7 @@
          xmlns:test="http://ode/bpel/unit-test.wsdl";
          xmlns:resp="http://ode/bpel/responder.wsdl";>
 
-  <import location="urn:/Main.wsdl" namespace="http://ode/bpel/unit-test.wsdl";
+  <import location="Main.wsdl" namespace="http://ode/bpel/unit-test.wsdl";
      importType="http://schemas.xmlsoap.org/wsdl/"; />
 
   <partnerLinks>
@@ -39,7 +39,6 @@
 
     <invoke name="get-endpoint" partnerLink="responderPartnerLink" 
portType="resp:DynResponderPortType"
             operation="getDynamicEndpoint" inputVariable="dummy" 
outputVariable="partnerEndpoint">
-      <rdfs:label xml:space="preserve">Receive Order 1</rdfs:label>
       <correlations>
         <correlation set="dummyCorr" initiate="yes" pattern="request"/>
       </correlations>
@@ -61,7 +60,6 @@
     <!-- Invoking the partner link service endpoint that has just been 
assigned -->
     <invoke name="dynamic-invoke" partnerLink="responderPartnerLink" 
portType="resp:DynResponderPortType"
             operation="acknowledge" inputVariable="dummy2" 
outputVariable="partnerAck">
-      <rdfs:label xml:space="preserve">Receive Order 2</rdfs:label>
       <correlations>
         <correlation set="dummyCorr" initiate="no" pattern="request"/>
       </correlations>
@@ -100,7 +98,6 @@
     <!-- Invoking the partner link service endpoint that has just been 
explicitly assigned -->
     <invoke name="dynamic-invoke" partnerLink="responderPartnerLink" 
portType="resp:DynResponderPortType"
             operation="acknowledge" inputVariable="dummy2" 
outputVariable="partnerAck">
-      <rdfs:label xml:space="preserve">Receive Order 3</rdfs:label>
       <correlations>
         <correlation set="dummyCorr" initiate="no" pattern="request"/>
       </correlations>
@@ -115,7 +112,6 @@
 
     <reply name="end" partnerLink="initiatorPartnerLink"
            portType="test:DynMainPortType" operation="execute" 
variable="result">
-        <rdfs:label xml:space="preserve">Receive Order 4</rdfs:label>
     </reply>
 
   </sequence>

Modified: 
incubator/ode/trunk/axis2-examples/src/examples/DynPartner/DynPartnerResponder.bpel
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/axis2-examples/src/examples/DynPartner/DynPartnerResponder.bpel?rev=438266&r1=438265&r2=438266&view=diff
==============================================================================
--- 
incubator/ode/trunk/axis2-examples/src/examples/DynPartner/DynPartnerResponder.bpel
 (original)
+++ 
incubator/ode/trunk/axis2-examples/src/examples/DynPartner/DynPartnerResponder.bpel
 Tue Aug 29 15:28:47 2006
@@ -8,7 +8,7 @@
          xmlns:xsd="http://www.w3.org/2001/XMLSchema";
          xmlns:resp="http://ode/bpel/responder.wsdl";>
 
-  <import location="urn:/Responder.wsdl" 
namespace="http://ode/bpel/responder.wsdl";
+  <import location="Responder.wsdl" namespace="http://ode/bpel/responder.wsdl";
      importType="http://schemas.xmlsoap.org/wsdl/"; />
 
   <partnerLinks>

Modified: 
incubator/ode/trunk/axis2-examples/src/examples/HelloWorld2/HelloWorld2.bpel
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/axis2-examples/src/examples/HelloWorld2/HelloWorld2.bpel?rev=438266&r1=438265&r2=438266&view=diff
==============================================================================
--- 
incubator/ode/trunk/axis2-examples/src/examples/HelloWorld2/HelloWorld2.bpel 
(original)
+++ 
incubator/ode/trunk/axis2-examples/src/examples/HelloWorld2/HelloWorld2.bpel 
Tue Aug 29 15:28:47 2006
@@ -6,7 +6,7 @@
     xmlns:xsd="http://www.w3.org/2001/XMLSchema";
     xmlns:test="http://ode/bpel/unit-test.wsdl";>
 
-  <import location="urn:/HelloWorld2.wsdl"
+  <import location="HelloWorld2.wsdl"
      namespace="http://ode/bpel/unit-test.wsdl";
      importType="http://schemas.xmlsoap.org/wsdl/"; />
 

Modified: incubator/ode/trunk/axis2-examples/src/examples/MagicSession/Main.bpel
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/axis2-examples/src/examples/MagicSession/Main.bpel?rev=438266&r1=438265&r2=438266&view=diff
==============================================================================
--- incubator/ode/trunk/axis2-examples/src/examples/MagicSession/Main.bpel 
(original)
+++ incubator/ode/trunk/axis2-examples/src/examples/MagicSession/Main.bpel Tue 
Aug 29 15:28:47 2006
@@ -9,7 +9,7 @@
          xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/";
          xmlns:test="http://ode/bpel/unit-test.wsdl";>
 
-  <import location="urn:/Main.wsdl" namespace="http://ode/bpel/unit-test.wsdl";
+  <import location="Main.wsdl" namespace="http://ode/bpel/unit-test.wsdl";
      importType="http://schemas.xmlsoap.org/wsdl/"; />
 
   <partnerLinks>

Modified: 
incubator/ode/trunk/axis2-examples/src/examples/MagicSession/Responder.bpel
URL: 
http://svn.apache.org/viewvc/incubator/ode/trunk/axis2-examples/src/examples/MagicSession/Responder.bpel?rev=438266&r1=438265&r2=438266&view=diff
==============================================================================
--- incubator/ode/trunk/axis2-examples/src/examples/MagicSession/Responder.bpel 
(original)
+++ incubator/ode/trunk/axis2-examples/src/examples/MagicSession/Responder.bpel 
Tue Aug 29 15:28:47 2006
@@ -8,7 +8,7 @@
          xmlns:xsd="http://www.w3.org/2001/XMLSchema";
          xmlns:resp="http://ode/bpel/unit-test.wsdl";>
 
-  <import location="urn:/Main.wsdl" namespace="http://ode/bpel/unit-test.wsdl";
+  <import location="Main.wsdl" namespace="http://ode/bpel/unit-test.wsdl";
      importType="http://schemas.xmlsoap.org/wsdl/"; />
 
   <partnerLinks>


Reply via email to