You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by va...@apache.org on 2008/08/27 20:41:49 UTC

svn commit: r689556 - in /ode/trunk/bpel-test/src/test/resources/bpel/2.0: TestPubSubInProc/ TestPubSubOutOfProc/

Author: vanto
Date: Wed Aug 27 11:41:49 2008
New Revision: 689556

URL: http://svn.apache.org/viewvc?rev=689556&view=rev
Log:
"Make assurance double sure!" does not necessarily hold for BPEL/WSDL etc.

Modified:
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld.wsdl
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld1.bpel
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld2.bpel
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldExternal.wsdl
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldPub.bpel
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldPub.wsdl
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/deploy.xml
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/test.properties
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld.wsdl
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld1.bpel
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld2.bpel
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/deploy.xml
    ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/test.properties

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld.wsdl?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld.wsdl (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld.wsdl Wed Aug 27 11:41:49 2008
@@ -65,72 +65,3 @@
        <plnk:role name="you" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>
 </wsdl:definitions>
-
-<?xml version="1.0" encoding="utf-8" ?>
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~    http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-
-<wsdl:definitions 
-    targetNamespace="http://ode/bpel/unit-test.wsdl"
-    xmlns="http://schemas.xmlsoap.org/wsdl/"
-    xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
-    xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype">
-    
-    <wsdl:message name="HelloMessage">
-        <wsdl:part name="TestPart" type="xsd:string"/>
-    </wsdl:message>
-    
-    <wsdl:portType name="HelloPortType">
-        <wsdl:operation name="hello">
-            <wsdl:input message="tns:HelloMessage" name="TestIn"/>
-            <wsdl:output message="tns:HelloMessage" name="TestOut"/>
-        </wsdl:operation>    
-    </wsdl:portType>
-    
-     <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
-        <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
-        <wsdl:operation name="hello">
-            <soap:operation soapAction="" style="rpc"/>
-            <wsdl:input>
-                <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl"
-                    use="literal"/>
-            </wsdl:input>
-            <wsdl:output>
-                <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl" 
-                    use="literal"/>
-            </wsdl:output>
-        </wsdl:operation>
-    </wsdl:binding>
-    <wsdl:service name="HelloService">
-		<wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
-     		<soap:address location="http://localhost:8080/ode/processes/helloWorld"/>			
-		</wsdl:port>
-    </wsdl:service>
-    
-   <plnk:partnerLinkType name="HelloPartnerLinkType">
-       <plnk:role name="me" portType="tns:HelloPortType"/>
-       <plnk:role name="you" portType="tns:HelloPortType"/>
-   </plnk:partnerLinkType>
-</wsdl:definitions>
-

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld1.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld1.bpel?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld1.bpel (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld1.bpel Wed Aug 27 11:41:49 2008
@@ -1,72 +1,4 @@
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~    http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-<process name="HelloWorld1"
-    targetNamespace="http://ode/bpel/unit-test" 
-    xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-    xmlns:tns="http://ode/bpel/unit-test"
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-    xmlns:test="http://ode/bpel/unit-test.wsdl"
-    queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-    expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0">
-
-  <import location="HelloWorld.wsdl"
-     namespace="http://ode/bpel/unit-test.wsdl"
-     importType="http://schemas.xmlsoap.org/wsdl/" />
-
-   <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
-         partnerLinkType="test:HelloPartnerLinkType" 
-         myRole="me" />
-   </partnerLinks>
-    
-   <variables>
-     <variable name="myVar" messageType="test:HelloMessage"/>
-     <variable name="tmpVar" type="xsd:string"/>
-   </variables>
-
-   <sequence>
-       <receive
-          name="start"
-          partnerLink="helloPartnerLink"
-          portType="test:HelloPortType"
-          operation="hello"
-          variable="myVar"
-          createInstance="yes"/>
-
-      <assign name="assign1">
-          <copy>
-              <from variable="myVar" part="TestPart"/>
-              <to variable="tmpVar"/>
-          </copy>
-          <copy>
-              <from>concat($tmpVar,' World')</from>
-              <to variable="myVar" part="TestPart"/>
-          </copy>
-      </assign>
-       <reply name="end"  
-              partnerLink="helloPartnerLink"
-              portType="test:HelloPortType" 
-              operation="hello"
-              variable="myVar"/>
-   </sequence>
-</process>
-<!--
+<!--
   ~ Licensed to the Apache Software Foundation (ASF) under one
   ~ or more contributor license agreements.  See the NOTICE file
   ~ distributed with this work for additional information

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld2.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld2.bpel?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld2.bpel (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorld2.bpel Wed Aug 27 11:41:49 2008
@@ -1,72 +1,4 @@
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~    http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-<process name="HelloWorld2"
-    targetNamespace="http://ode/bpel/unit-test" 
-    xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-    xmlns:tns="http://ode/bpel/unit-test"
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-    xmlns:test="http://ode/bpel/unit-test.wsdl"
-    queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-    expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0">
-
-  <import location="HelloWorld.wsdl"
-     namespace="http://ode/bpel/unit-test.wsdl"
-     importType="http://schemas.xmlsoap.org/wsdl/" />
-
-   <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
-         partnerLinkType="test:HelloPartnerLinkType" 
-         myRole="me" />
-   </partnerLinks>
-    
-   <variables>
-     <variable name="myVar" messageType="test:HelloMessage"/>
-     <variable name="tmpVar" type="xsd:string"/>
-   </variables>
-
-   <sequence>
-       <receive
-          name="start"
-          partnerLink="helloPartnerLink"
-          portType="test:HelloPortType"
-          operation="hello"
-          variable="myVar"
-          createInstance="yes"/>
-
-      <assign name="assign1">
-          <copy>
-              <from variable="myVar" part="TestPart"/>
-              <to variable="tmpVar"/>
-          </copy>
-          <copy>
-              <from>concat($tmpVar,' World')</from>
-              <to variable="myVar" part="TestPart"/>
-          </copy>
-      </assign>
-       <reply name="end"  
-              partnerLink="helloPartnerLink"
-              portType="test:HelloPortType" 
-              operation="hello"
-              variable="myVar"/>
-   </sequence>
-</process>
-<!--
+<!--
   ~ Licensed to the Apache Software Foundation (ASF) under one
   ~ or more contributor license agreements.  See the NOTICE file
   ~ distributed with this work for additional information

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldExternal.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldExternal.wsdl?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldExternal.wsdl (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldExternal.wsdl Wed Aug 27 11:41:49 2008
@@ -65,72 +65,3 @@
        <plnk:role name="you" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>
 </wsdl:definitions>
-
-<?xml version="1.0" encoding="utf-8" ?>
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~    http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-
-<wsdl:definitions 
-    targetNamespace="http://ode/bpel/unit-test.wsdl"
-    xmlns="http://schemas.xmlsoap.org/wsdl/"
-    xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
-    xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype">
-    
-    <wsdl:message name="HelloMessage">
-        <wsdl:part name="TestPart" type="xsd:string"/>
-    </wsdl:message>
-    
-    <wsdl:portType name="HelloPortType">
-        <wsdl:operation name="hello">
-            <wsdl:input message="tns:HelloMessage" name="TestIn"/>
-            <wsdl:output message="tns:HelloMessage" name="TestOut"/>
-        </wsdl:operation>    
-    </wsdl:portType>
-    
-     <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
-        <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
-        <wsdl:operation name="hello">
-            <soap:operation soapAction="" style="rpc"/>
-            <wsdl:input>
-                <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl"
-                    use="literal"/>
-            </wsdl:input>
-            <wsdl:output>
-                <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl" 
-                    use="literal"/>
-            </wsdl:output>
-        </wsdl:operation>
-    </wsdl:binding>
-    <wsdl:service name="HelloPubService">
-		<wsdl:port name="HelloPubPort" binding="tns:HelloSoapBinding">
-     		<soap:address location="http://localhost:8080/ode/processes/HelloPubWorld"/>
-		</wsdl:port>
-    </wsdl:service>
-    
-   <plnk:partnerLinkType name="HelloPartnerLinkType">
-       <plnk:role name="me" portType="tns:HelloPortType"/>
-       <plnk:role name="you" portType="tns:HelloPortType"/>
-   </plnk:partnerLinkType>
-</wsdl:definitions>
-

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldPub.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldPub.bpel?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldPub.bpel (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldPub.bpel Wed Aug 27 11:41:49 2008
@@ -16,21 +16,3 @@
     <bpel:reply partnerLink="poolAndStartForHelloPortPlkVar" portType="tns:HelloPortType" operation="hello" variable="tnsHelloResponseMsg"/>
   </bpel:sequence>
 </bpel:process>
-<?xml version="1.0" encoding="UTF-8"?>
-<bpel:process xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop" xmlns:pnlk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:Start="http://ode/bpel/unit-test/Start" xmlns:HelloWorld="http://ode/bpel/unit-test/HelloWorld" xmlns:this="http://ode/bpel/unit-test" xmlns:diag="http://ode/bpel/unit-test.wsdl" xmlns:tns="http://ode/bpel/unit-test.wsdl" xmlns:xml="http://www.w3.org/XML/1998/namespace" xmlns:atomic="http://ode.apache.org/atomicScope" queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0" expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0" name="HelloWorldPub" targetNamespace="http://ode/bpel/unit-test">
-  <bpel:import namespace="http://ode/bpel/unit-test.wsdl" location="HelloWorld.wsdl" importType="http://schemas.xmlsoap.org/wsdl/"/>
-  <bpel:import namespace="http://ode/bpel/unit-test.wsdl" location="HelloWorldPub.wsdl" importType="http://schemas.xmlsoap.org/wsdl/"/>
-  <bpel:partnerLinks>
-    <bpel:partnerLink name="helloWorldAndPoolForHelloPortPlkVar" partnerLinkType="diag:HelloWorldAndPoolForHelloPortPlk" initializePartnerRole="true" partnerRole="HelloWorld_for_Pool"/>
-    <bpel:partnerLink name="poolAndStartForHelloPortPlkVar" partnerLinkType="diag:PoolAndStartForHelloPortPlk" myRole="Pool_for_Start"/>
-  </bpel:partnerLinks>
-  <bpel:variables>
-    <bpel:variable name="tnsHelloRequestMsg" messageType="tns:HelloMessage"/>
-    <bpel:variable name="tnsHelloResponseMsg" messageType="tns:HelloMessage"/>
-  </bpel:variables>
-  <bpel:sequence>
-    <bpel:receive partnerLink="poolAndStartForHelloPortPlkVar" portType="tns:HelloPortType" operation="hello" variable="tnsHelloRequestMsg" createInstance="yes"/>
-	<bpel:invoke partnerLink="helloWorldAndPoolForHelloPortPlkVar" portType="tns:HelloPortType" operation="hello" inputVariable="tnsHelloRequestMsg" outputVariable="tnsHelloResponseMsg"/>
-    <bpel:reply partnerLink="poolAndStartForHelloPortPlkVar" portType="tns:HelloPortType" operation="hello" variable="tnsHelloResponseMsg"/>
-  </bpel:sequence>
-</bpel:process>
\ No newline at end of file

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldPub.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldPub.wsdl?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldPub.wsdl (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/HelloWorldPub.wsdl Wed Aug 27 11:41:49 2008
@@ -9,14 +9,3 @@
         <pnlk:role name="Pool_for_Start" portType="tns:HelloPortType"/>
     </pnlk:partnerLinkType>
 </wsdl:definitions>
-<?xml version='1.0' encoding='utf-8'?>
-<wsdl:definitions xmlns:bpdm="http://www.intalio/designer/business-process-data-modeling" xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable" xmlns:diag="http://ode/bpel/unit-test.wsdl" xmlns:Start="http://ode/bpel/unit-test.wsdl/Start" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://ode/bpel/unit-test.wsdl" xmlns:Pool="http://example.com/diagram/Pool" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:pnlk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" targetNamespace="http://ode/bpel/unit-test.wsdl">
-    <wsdl:import namespace="http://ode/bpel/unit-test.wsdl" location="HelloWorld.wsdl"/>
-    <wsdl:import namespace="http://ode/bpel/unit-test.wsdl" location="HelloWorldExternal.wsdl"/>
-    <pnlk:partnerLinkType name="HelloWorldAndPoolForHelloPortPlk">
-        <pnlk:role name="HelloWorld_for_Pool" portType="tns:HelloPortType"/>
-    </pnlk:partnerLinkType>
-    <pnlk:partnerLinkType name="PoolAndStartForHelloPortPlk">
-        <pnlk:role name="Pool_for_Start" portType="tns:HelloPortType"/>
-    </pnlk:partnerLinkType>
-</wsdl:definitions>
\ No newline at end of file

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/deploy.xml?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/deploy.xml (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/deploy.xml Wed Aug 27 11:41:49 2008
@@ -1,53 +1,4 @@
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~    http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-<deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-	xmlns:pns="http://ode/bpel/unit-test" 
-	xmlns:wns="http://ode/bpel/unit-test.wsdl">
-
-	<process name="pns:HelloWorld1">
-		<active>true</active>
-		<provide partnerLink="helloPartnerLink">
-			<service name="wns:HelloService" port="HelloPort"/>
-			<enableSharing/>
-		</provide>
-	</process>
-
-	<process name="pns:HelloWorld2">
-		<active>true</active>
-		<provide partnerLink="helloPartnerLink">
-			<service name="wns:HelloService" port="HelloPort"/>
-			<enableSharing/>
-		</provide>
-	</process>
-	
-	<process name="pns:HelloWorldPub">
-		<active>true</active>
-		<provide partnerLink="poolAndStartForHelloPortPlkVar">
-			<service name="wns:HelloPubService" port="HelloPubPort"/>
-		</provide>
-		<invoke partnerLink="helloWorldAndPoolForHelloPortPlkVar">
-		    <service name="wns:HelloService" port="HelloPort"/>
-	    </invoke>
-  </process>
-	
-</deploy>
-<!--
+<!--
   ~ Licensed to the Apache Software Foundation (ASF) under one
   ~ or more contributor license agreements.  See the NOTICE file
   ~ distributed with this work for additional information

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/test.properties
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/test.properties?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/test.properties (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubInProc/test.properties Wed Aug 27 11:41:49 2008
@@ -1,4 +1,4 @@
-#
+#
 #    Licensed to the Apache Software Foundation (ASF) under one or more
 #    contributor license agreements.  See the NOTICE file distributed with
 #    this work for additional information regarding copyright ownership.
@@ -20,27 +20,3 @@
 operation=hello
 request1=<message><TestPart><content>Hello</content></TestPart></message>
 response1=.*Hello World.*
-
-#
-#    Licensed to the Apache Software Foundation (ASF) under one or more
-#    contributor license agreements.  See the NOTICE file distributed with
-#    this work for additional information regarding copyright ownership.
-#    The ASF licenses this file to You under the Apache License, Version 2.0
-#    (the "License"); you may not use this file except in compliance with
-#    the License.  You may obtain a copy of the License at
-#
-#       http://www.apache.org/licenses/LICENSE-2.0
-#
-#    Unless required by applicable law or agreed to in writing, software
-#    distributed under the License is distributed on an "AS IS" BASIS,
-#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-#    See the License for the specific language governing permissions and
-#    limitations under the License.
-#
-
-namespace=http://ode/bpel/unit-test.wsdl
-service=HelloPubService
-operation=hello
-request1=<message><TestPart><content>Hello</content></TestPart></message>
-response1=.*Hello World.*
-

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld.wsdl?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld.wsdl (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld.wsdl Wed Aug 27 11:41:49 2008
@@ -1,4 +1,4 @@
-<?xml version="1.0" encoding="utf-8" ?>
+<?xml version="1.0" encoding="utf-8" ?>
 <!--
   ~ Licensed to the Apache Software Foundation (ASF) under one
   ~ or more contributor license agreements.  See the NOTICE file
@@ -65,72 +65,3 @@
        <plnk:role name="you" portType="tns:HelloPortType"/>
    </plnk:partnerLinkType>
 </wsdl:definitions>
-
-<?xml version="1.0" encoding="utf-8" ?>
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~    http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-
-<wsdl:definitions 
-    targetNamespace="http://ode/bpel/unit-test.wsdl"
-    xmlns="http://schemas.xmlsoap.org/wsdl/"
-    xmlns:tns="http://ode/bpel/unit-test.wsdl"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
-    xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype">
-    
-    <wsdl:message name="HelloMessage">
-        <wsdl:part name="TestPart" type="xsd:string"/>
-    </wsdl:message>
-    
-    <wsdl:portType name="HelloPortType">
-        <wsdl:operation name="hello">
-            <wsdl:input message="tns:HelloMessage" name="TestIn"/>
-            <wsdl:output message="tns:HelloMessage" name="TestOut"/>
-        </wsdl:operation>    
-    </wsdl:portType>
-    
-     <wsdl:binding name="HelloSoapBinding" type="tns:HelloPortType">
-        <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
-        <wsdl:operation name="hello">
-            <soap:operation soapAction="" style="rpc"/>
-            <wsdl:input>
-                <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl"
-                    use="literal"/>
-            </wsdl:input>
-            <wsdl:output>
-                <soap:body
-                    namespace="http://ode/bpel/unit-test.wsdl" 
-                    use="literal"/>
-            </wsdl:output>
-        </wsdl:operation>
-    </wsdl:binding>
-    <wsdl:service name="HelloService">
-		<wsdl:port name="HelloPort" binding="tns:HelloSoapBinding">
-     		<soap:address location="http://localhost:8080/ode/processes/helloWorld"/>			
-		</wsdl:port>
-    </wsdl:service>
-    
-   <plnk:partnerLinkType name="HelloPartnerLinkType">
-       <plnk:role name="me" portType="tns:HelloPortType"/>
-       <plnk:role name="you" portType="tns:HelloPortType"/>
-   </plnk:partnerLinkType>
-</wsdl:definitions>
-

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld1.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld1.bpel?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld1.bpel (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld1.bpel Wed Aug 27 11:41:49 2008
@@ -1,72 +1,4 @@
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~    http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-<process name="HelloWorld1"
-    targetNamespace="http://ode/bpel/unit-test" 
-    xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-    xmlns:tns="http://ode/bpel/unit-test"
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-    xmlns:test="http://ode/bpel/unit-test.wsdl"
-    queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-    expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0">
-
-  <import location="HelloWorld.wsdl"
-     namespace="http://ode/bpel/unit-test.wsdl"
-     importType="http://schemas.xmlsoap.org/wsdl/" />
-
-   <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
-         partnerLinkType="test:HelloPartnerLinkType" 
-         myRole="me" />
-   </partnerLinks>
-    
-   <variables>
-     <variable name="myVar" messageType="test:HelloMessage"/>
-     <variable name="tmpVar" type="xsd:string"/>
-   </variables>
-
-   <sequence>
-       <receive
-          name="start"
-          partnerLink="helloPartnerLink"
-          portType="test:HelloPortType"
-          operation="hello"
-          variable="myVar"
-          createInstance="yes"/>
-
-      <assign name="assign1">
-          <copy>
-              <from variable="myVar" part="TestPart"/>
-              <to variable="tmpVar"/>
-          </copy>
-          <copy>
-              <from>concat($tmpVar,' World')</from>
-              <to variable="myVar" part="TestPart"/>
-          </copy>
-      </assign>
-       <reply name="end"  
-              partnerLink="helloPartnerLink"
-              portType="test:HelloPortType" 
-              operation="hello"
-              variable="myVar"/>
-   </sequence>
-</process>
-<!--
+<!--
   ~ Licensed to the Apache Software Foundation (ASF) under one
   ~ or more contributor license agreements.  See the NOTICE file
   ~ distributed with this work for additional information

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld2.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld2.bpel?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld2.bpel (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/HelloWorld2.bpel Wed Aug 27 11:41:49 2008
@@ -1,72 +1,4 @@
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~    http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-<process name="HelloWorld2"
-    targetNamespace="http://ode/bpel/unit-test" 
-    xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-    xmlns:tns="http://ode/bpel/unit-test"
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-    xmlns:test="http://ode/bpel/unit-test.wsdl"
-    queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-    expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0">
-
-  <import location="HelloWorld.wsdl"
-     namespace="http://ode/bpel/unit-test.wsdl"
-     importType="http://schemas.xmlsoap.org/wsdl/" />
-
-   <partnerLinks>
-      <partnerLink name="helloPartnerLink" 
-         partnerLinkType="test:HelloPartnerLinkType" 
-         myRole="me" />
-   </partnerLinks>
-    
-   <variables>
-     <variable name="myVar" messageType="test:HelloMessage"/>
-     <variable name="tmpVar" type="xsd:string"/>
-   </variables>
-
-   <sequence>
-       <receive
-          name="start"
-          partnerLink="helloPartnerLink"
-          portType="test:HelloPortType"
-          operation="hello"
-          variable="myVar"
-          createInstance="yes"/>
-
-      <assign name="assign1">
-          <copy>
-              <from variable="myVar" part="TestPart"/>
-              <to variable="tmpVar"/>
-          </copy>
-          <copy>
-              <from>concat($tmpVar,' World')</from>
-              <to variable="myVar" part="TestPart"/>
-          </copy>
-      </assign>
-       <reply name="end"  
-              partnerLink="helloPartnerLink"
-              portType="test:HelloPortType" 
-              operation="hello"
-              variable="myVar"/>
-   </sequence>
-</process>
-<!--
+<!--
   ~ Licensed to the Apache Software Foundation (ASF) under one
   ~ or more contributor license agreements.  See the NOTICE file
   ~ distributed with this work for additional information

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/deploy.xml?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/deploy.xml (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/deploy.xml Wed Aug 27 11:41:49 2008
@@ -1,43 +1,4 @@
-<!--
-  ~ Licensed to the Apache Software Foundation (ASF) under one
-  ~ or more contributor license agreements.  See the NOTICE file
-  ~ distributed with this work for additional information
-  ~ regarding copyright ownership.  The ASF licenses this file
-  ~ to you under the Apache License, Version 2.0 (the
-  ~ "License"); you may not use this file except in compliance
-  ~ with the License.  You may obtain a copy of the License at
-  ~
-  ~    http://www.apache.org/licenses/LICENSE-2.0
-  ~
-  ~ Unless required by applicable law or agreed to in writing,
-  ~ software distributed under the License is distributed on an
-  ~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
-  ~ KIND, either express or implied.  See the License for the
-  ~ specific language governing permissions and limitations
-  ~ under the License.
-  -->
-<deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-	xmlns:pns="http://ode/bpel/unit-test" 
-	xmlns:wns="http://ode/bpel/unit-test.wsdl">
-
-	<process name="pns:HelloWorld1">
-		<active>true</active>
-		<provide partnerLink="helloPartnerLink">
-			<service name="wns:HelloService" port="HelloPort"/>
-			<enableSharing/>
-		</provide>
-	</process>
-
-	<process name="pns:HelloWorld2">
-		<active>true</active>
-		<provide partnerLink="helloPartnerLink">
-			<service name="wns:HelloService" port="HelloPort"/>
-			<enableSharing/>
-		</provide>
-	</process>
-	
-</deploy>
-<!--
+<!--
   ~ Licensed to the Apache Software Foundation (ASF) under one
   ~ or more contributor license agreements.  See the NOTICE file
   ~ distributed with this work for additional information

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/test.properties
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/test.properties?rev=689556&r1=689555&r2=689556&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/test.properties (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestPubSubOutOfProc/test.properties Wed Aug 27 11:41:49 2008
@@ -1,4 +1,4 @@
-#
+#
 #    Licensed to the Apache Software Foundation (ASF) under one or more
 #    contributor license agreements.  See the NOTICE file distributed with
 #    this work for additional information regarding copyright ownership.
@@ -20,27 +20,3 @@
 operation=hello
 request1=<message><TestPart><content>Hello</content></TestPart></message>
 response1=.*Hello World.*
-
-#
-#    Licensed to the Apache Software Foundation (ASF) under one or more
-#    contributor license agreements.  See the NOTICE file distributed with
-#    this work for additional information regarding copyright ownership.
-#    The ASF licenses this file to You under the Apache License, Version 2.0
-#    (the "License"); you may not use this file except in compliance with
-#    the License.  You may obtain a copy of the License at
-#
-#       http://www.apache.org/licenses/LICENSE-2.0
-#
-#    Unless required by applicable law or agreed to in writing, software
-#    distributed under the License is distributed on an "AS IS" BASIS,
-#    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-#    See the License for the specific language governing permissions and
-#    limitations under the License.
-#
-
-namespace=http://ode/bpel/unit-test.wsdl
-service=HelloService
-operation=hello
-request1=<message><TestPart><content>Hello</content></TestPart></message>
-response1=.*Hello World.*
-