You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mr...@apache.org on 2009/01/24 00:53:21 UTC

svn commit: r737256 [8/12] - in /ode/branches/APACHE_ODE_1.X: bpel-test/src/test/resources/ bpel-test/src/test/resources/bpel/2.0/TestAlarm/ bpel-test/src/test/resources/bpel/2.0/TestAssignComplex/ bpel-test/src/test/resources/bpel/2.0/TestAssignDate/ ...

Modified: ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestStaticPick/TestStaticPick.bpel
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestStaticPick/TestStaticPick.bpel?rev=737256&r1=737255&r2=737256&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestStaticPick/TestStaticPick.bpel (original)
+++ ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestStaticPick/TestStaticPick.bpel Fri Jan 23 23:53:17 2009
@@ -1,209 +1,209 @@
-<!--
-	~ 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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-         xsi:schemaLocation="http://docs.oasis-open.org/wsbpel/2.0/process/executable ../../../../../../../bpel-schemas/src/main/resources/wsbpel_executable.xsd"
-         xmlns:tns="http://ode/bpel/unit-test/TestStaticPick"
-         xmlns:wns="http://ode/bpel/unit-test/TestStaticPick.wsdl"
-         xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
-         xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-         name="TestStaticPick"
-         targetNamespace="http://ode/bpel/unit-test/TestStaticPick"
-         queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-         expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-         suppressJoinFailure="yes">
-
-    <import location="TestStaticPick.wsdl"
-            namespace="http://ode/bpel/unit-test/TestStaticPick.wsdl"
-            importType="http://schemas.xmlsoap.org/wsdl/" />
-    <import location="../ProbeService/probeService.wsdl"
-            namespace="http://ode/bpel/unit-test/ProbeService.wsdl"
-            importType="http://schemas.xmlsoap.org/wsdl/"/>
-
-    <!-- Unit test pick with blocking static key -->
-
-    <partnerLinks>
-        <partnerLink name="request1" partnerLinkType="wns:TestStaticPick1Request" myRole="TestStaticPick1Service"/>
-        <partnerLink name="probe" partnerLinkType="wns:probeRequest" partnerRole="probeService" initializePartnerRole="yes"/>
-    </partnerLinks>
-
-    <variables>
-        <variable name="request"
-                  messageType="wns:requestMessage"/>
-        <variable name="probeInput"
-                  messageType="prb:probeMessage"/>
-        <variable name="reply"
-                  messageType="wns:replyMessage"/>
-    </variables>
-
-    <correlationSets>
-        <correlationSet name="testCorr1" properties="wns:testProbeID"/>
-    </correlationSets>
-
-    <sequence>
-        <receive name="receive1" partnerLink="request1"
-                 portType="wns:TestStaticPick1PT"
-                 operation="request" variable="request"
-                 createInstance="yes">
-            <correlations>
-                <correlation set="testCorr1" initiate="yes"/>
-            </correlations>
-        </receive>
-
-        <assign name="assign1">
-            <copy>
-                <from variable="request" property="wns:testProbeID"/>
-                <to variable="probeInput" part="probeName"/>
-            </copy>
-            <copy>
-                <from variable="request" part="requestText"/>
-                <to variable="probeInput" part="probeData"/>
-            </copy>
-        </assign>
-
-
-        <assign>
-            <copy>
-                <from>
-                    <literal><![CDATA[block for next message]]></literal>
-                </from>
-                <to variable="probeInput" part="probeName"/>
-            </copy>
-        </assign>
-
-        <invoke name="probe" partnerLink="probe"
-                portType="prb:probeMessagePT"
-                operation="probe"
-                inputVariable="probeInput"
-                outputVariable="probeInput">
-        </invoke>
-
-        <pick name="testPick">
-            <onMessage partnerLink="request1"
-                       portType="wns:TestStaticPick1PT" operation="continue1" variable="request">
-                <correlations>
-                    <correlation set="testCorr1"/>
-                </correlations>
-                <sequence>
-                    <assign>
-                        <copy>
-                            <from>
-                                <literal><![CDATA[pick branch one invoked]]></literal>
-                            </from>
-                            <to variable="probeInput" part="probeName"/>
-                        </copy>
-                    </assign>
-
-                    <invoke name="probe" partnerLink="probe"
-                            portType="prb:probeMessagePT"
-                            operation="probe"
-                            inputVariable="probeInput"
-                            outputVariable="probeInput">
-                    </invoke>
-
-                    <assign>
-                        <copy>
-                            <from>
-                                <literal><![CDATA[process complete]]></literal>
-                            </from>
-                            <to variable="probeInput" part="probeName"/>
-                        </copy>
-                    </assign>
-
-                    <invoke name="probe" partnerLink="probe"
-                            portType="prb:probeMessagePT"
-                            operation="probe"
-                            inputVariable="probeInput"
-                            outputVariable="probeInput">
-                    </invoke>
-
-                    <assign name="assign2">
-                        <copy>
-                            <from variable="probeInput" part="probeName"/>
-                            <to variable="reply" part="replyID"/>
-                        </copy>
-                        <copy>
-                            <from variable="probeInput" part="probeData"/>
-                            <to variable="reply" part="replyText"/>
-                        </copy>
-                    </assign>
-
-                    <reply name="reply" partnerLink="request1" portType="wns:TestStaticPick1PT"
-                           operation="continue1" variable="reply">
-                    </reply>
-
-                </sequence>
-            </onMessage>
-            <onMessage partnerLink="request1"
-                       portType="wns:TestStaticPick1PT" operation="continue2" variable="request">
-                <correlations>
-                    <correlation set="testCorr1"/>
-                </correlations>
-                <sequence>
-                    <assign>
-                        <copy>
-                            <from>
-                                <literal><![CDATA[pick branch two invoked]]></literal>
-                            </from>
-                            <to variable="probeInput" part="probeName"/>
-                        </copy>
-                    </assign>
-
-                    <invoke name="probe" partnerLink="probe"
-                            portType="prb:probeMessagePT"
-                            operation="probe"
-                            inputVariable="probeInput"
-                            outputVariable="probeInput">
-                    </invoke>
-
-                    <assign>
-                        <copy>
-                            <from>
-                                <literal><![CDATA[process complete]]></literal>
-                            </from>
-                            <to variable="probeInput" part="probeName"/>
-                        </copy>
-                    </assign>
-
-                    <invoke name="probe" partnerLink="probe"
-                            portType="prb:probeMessagePT"
-                            operation="probe"
-                            inputVariable="probeInput"
-                            outputVariable="probeInput">
-                    </invoke>
-                    <assign name="assign2">
-                        <copy>
-                            <from variable="probeInput" part="probeName"/>
-                            <to variable="reply" part="replyID"/>
-                        </copy>
-                        <copy>
-                            <from variable="probeInput" part="probeData"/>
-                            <to variable="reply" part="replyText"/>
-                        </copy>
-                    </assign>
-
-                    <reply name="reply" partnerLink="request1" portType="wns:TestStaticPick1PT"
-                           operation="continue2" variable="reply">
-                    </reply>
-
-                </sequence>
-            </onMessage>
-        </pick>
-    </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
+	~ 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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://docs.oasis-open.org/wsbpel/2.0/process/executable ../../../../../../../bpel-schemas/src/main/resources/wsbpel_executable.xsd"
+         xmlns:tns="http://ode/bpel/unit-test/TestStaticPick"
+         xmlns:wns="http://ode/bpel/unit-test/TestStaticPick.wsdl"
+         xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
+         xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
+         name="TestStaticPick"
+         targetNamespace="http://ode/bpel/unit-test/TestStaticPick"
+         queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+         expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+         suppressJoinFailure="yes">
+
+    <import location="TestStaticPick.wsdl"
+            namespace="http://ode/bpel/unit-test/TestStaticPick.wsdl"
+            importType="http://schemas.xmlsoap.org/wsdl/" />
+    <import location="../ProbeService/probeService.wsdl"
+            namespace="http://ode/bpel/unit-test/ProbeService.wsdl"
+            importType="http://schemas.xmlsoap.org/wsdl/"/>
+
+    <!-- Unit test pick with blocking static key -->
+
+    <partnerLinks>
+        <partnerLink name="request1" partnerLinkType="wns:TestStaticPick1Request" myRole="TestStaticPick1Service"/>
+        <partnerLink name="probe" partnerLinkType="wns:probeRequest" partnerRole="probeService" initializePartnerRole="yes"/>
+    </partnerLinks>
+
+    <variables>
+        <variable name="request"
+                  messageType="wns:requestMessage"/>
+        <variable name="probeInput"
+                  messageType="prb:probeMessage"/>
+        <variable name="reply"
+                  messageType="wns:replyMessage"/>
+    </variables>
+
+    <correlationSets>
+        <correlationSet name="testCorr1" properties="wns:testProbeID"/>
+    </correlationSets>
+
+    <sequence>
+        <receive name="receive1" partnerLink="request1"
+                 portType="wns:TestStaticPick1PT"
+                 operation="request" variable="request"
+                 createInstance="yes">
+            <correlations>
+                <correlation set="testCorr1" initiate="yes"/>
+            </correlations>
+        </receive>
+
+        <assign name="assign1">
+            <copy>
+                <from variable="request" property="wns:testProbeID"/>
+                <to variable="probeInput" part="probeName"/>
+            </copy>
+            <copy>
+                <from variable="request" part="requestText"/>
+                <to variable="probeInput" part="probeData"/>
+            </copy>
+        </assign>
+
+
+        <assign>
+            <copy>
+                <from>
+                    <literal><![CDATA[block for next message]]></literal>
+                </from>
+                <to variable="probeInput" part="probeName"/>
+            </copy>
+        </assign>
+
+        <invoke name="probe" partnerLink="probe"
+                portType="prb:probeMessagePT"
+                operation="probe"
+                inputVariable="probeInput"
+                outputVariable="probeInput">
+        </invoke>
+
+        <pick name="testPick">
+            <onMessage partnerLink="request1"
+                       portType="wns:TestStaticPick1PT" operation="continue1" variable="request">
+                <correlations>
+                    <correlation set="testCorr1"/>
+                </correlations>
+                <sequence>
+                    <assign>
+                        <copy>
+                            <from>
+                                <literal><![CDATA[pick branch one invoked]]></literal>
+                            </from>
+                            <to variable="probeInput" part="probeName"/>
+                        </copy>
+                    </assign>
+
+                    <invoke name="probe" partnerLink="probe"
+                            portType="prb:probeMessagePT"
+                            operation="probe"
+                            inputVariable="probeInput"
+                            outputVariable="probeInput">
+                    </invoke>
+
+                    <assign>
+                        <copy>
+                            <from>
+                                <literal><![CDATA[process complete]]></literal>
+                            </from>
+                            <to variable="probeInput" part="probeName"/>
+                        </copy>
+                    </assign>
+
+                    <invoke name="probe" partnerLink="probe"
+                            portType="prb:probeMessagePT"
+                            operation="probe"
+                            inputVariable="probeInput"
+                            outputVariable="probeInput">
+                    </invoke>
+
+                    <assign name="assign2">
+                        <copy>
+                            <from variable="probeInput" part="probeName"/>
+                            <to variable="reply" part="replyID"/>
+                        </copy>
+                        <copy>
+                            <from variable="probeInput" part="probeData"/>
+                            <to variable="reply" part="replyText"/>
+                        </copy>
+                    </assign>
+
+                    <reply name="reply" partnerLink="request1" portType="wns:TestStaticPick1PT"
+                           operation="continue1" variable="reply">
+                    </reply>
+
+                </sequence>
+            </onMessage>
+            <onMessage partnerLink="request1"
+                       portType="wns:TestStaticPick1PT" operation="continue2" variable="request">
+                <correlations>
+                    <correlation set="testCorr1"/>
+                </correlations>
+                <sequence>
+                    <assign>
+                        <copy>
+                            <from>
+                                <literal><![CDATA[pick branch two invoked]]></literal>
+                            </from>
+                            <to variable="probeInput" part="probeName"/>
+                        </copy>
+                    </assign>
+
+                    <invoke name="probe" partnerLink="probe"
+                            portType="prb:probeMessagePT"
+                            operation="probe"
+                            inputVariable="probeInput"
+                            outputVariable="probeInput">
+                    </invoke>
+
+                    <assign>
+                        <copy>
+                            <from>
+                                <literal><![CDATA[process complete]]></literal>
+                            </from>
+                            <to variable="probeInput" part="probeName"/>
+                        </copy>
+                    </assign>
+
+                    <invoke name="probe" partnerLink="probe"
+                            portType="prb:probeMessagePT"
+                            operation="probe"
+                            inputVariable="probeInput"
+                            outputVariable="probeInput">
+                    </invoke>
+                    <assign name="assign2">
+                        <copy>
+                            <from variable="probeInput" part="probeName"/>
+                            <to variable="reply" part="replyID"/>
+                        </copy>
+                        <copy>
+                            <from variable="probeInput" part="probeData"/>
+                            <to variable="reply" part="replyText"/>
+                        </copy>
+                    </assign>
+
+                    <reply name="reply" partnerLink="request1" portType="wns:TestStaticPick1PT"
+                           operation="continue2" variable="reply">
+                    </reply>
+
+                </sequence>
+            </onMessage>
+        </pick>
+    </sequence>
+</process>

Modified: ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestStaticPick/TestStaticPick.wsdl
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestStaticPick/TestStaticPick.wsdl?rev=737256&r1=737255&r2=737256&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestStaticPick/TestStaticPick.wsdl (original)
+++ ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestStaticPick/TestStaticPick.wsdl Fri Jan 23 23:53:17 2009
@@ -1,79 +1,79 @@
-<!--
-   ~ 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/TestStaticPick.wsdl"
-   xmlns:tns="http://ode/bpel/unit-test/TestStaticPick.wsdl"
-   xmlns="http://ode/bpel/unit-test/TestStaticPick.wsdl"
-   xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
-   xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
-   xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"      
-   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-   xmlns:bpws="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-   xmlns:prop="http://docs.oasis-open.org/wsbpel/2.0/varprop">
-
-
-   <wsdl:message name="requestMessage">
-      <wsdl:part name="requestID" type="xsd:string"/>
-      <wsdl:part name="requestText" type="xsd:string"/>
-   </wsdl:message>
-   
-   <wsdl:message name="replyMessage">
-      <wsdl:part name="replyID" type="xsd:string"/>
-      <wsdl:part name="replyText" type="xsd:string"/>
-   </wsdl:message>
-
-
-   <wsdl:portType name="TestStaticPick1PT">
-      <wsdl:operation name="request">
-         <wsdl:input message="requestMessage"/>
-      </wsdl:operation>
-      <wsdl:operation name="continue1">
-         <wsdl:input message="requestMessage"/>
-         <wsdl:output message="replyMessage"/>
-      </wsdl:operation>
-      <wsdl:operation name="continue2">
-         <wsdl:input message="requestMessage"/>
-         <wsdl:output message="replyMessage"/>
-      </wsdl:operation>
-   </wsdl:portType>
-
-   
-   <wsdl:binding name="TestStaticPick1Binding" type="tns:TestStaticPick1PT">
-      <wsdl:operation name="request"/>
-      <wsdl:operation name="continue1"/>
-      <wsdl:operation name="continue2"/>
-   </wsdl:binding>
-   <wsdl:service name="TestStaticPick1Service">
-      <wsdl:port name="TestStaticPick1Port" binding="tns:TestStaticPick1Binding">
-      </wsdl:port>
-   </wsdl:service>
-   
-   <plnk:partnerLinkType name="TestStaticPick1Request">
-      <plnk:role name="TestStaticPick1Service" portType="TestStaticPick1PT"/>
-   </plnk:partnerLinkType>
-
-   <plnk:partnerLinkType name="probeRequest">
-	  <plnk:role name="probeService" portType="prb:probeMessagePT"/>
-   </plnk:partnerLinkType>
-
-   <prop:property name="testProbeID" type="xsd:string"/>
-   <prop:propertyAlias propertyName="tns:testProbeID" messageType="tns:requestMessage" part="requestID"/>
-
-</wsdl:definitions>
+<!--
+   ~ 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/TestStaticPick.wsdl"
+   xmlns:tns="http://ode/bpel/unit-test/TestStaticPick.wsdl"
+   xmlns="http://ode/bpel/unit-test/TestStaticPick.wsdl"
+   xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
+   xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+   xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"      
+   xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+   xmlns:bpws="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
+   xmlns:prop="http://docs.oasis-open.org/wsbpel/2.0/varprop">
+
+
+   <wsdl:message name="requestMessage">
+      <wsdl:part name="requestID" type="xsd:string"/>
+      <wsdl:part name="requestText" type="xsd:string"/>
+   </wsdl:message>
+   
+   <wsdl:message name="replyMessage">
+      <wsdl:part name="replyID" type="xsd:string"/>
+      <wsdl:part name="replyText" type="xsd:string"/>
+   </wsdl:message>
+
+
+   <wsdl:portType name="TestStaticPick1PT">
+      <wsdl:operation name="request">
+         <wsdl:input message="requestMessage"/>
+      </wsdl:operation>
+      <wsdl:operation name="continue1">
+         <wsdl:input message="requestMessage"/>
+         <wsdl:output message="replyMessage"/>
+      </wsdl:operation>
+      <wsdl:operation name="continue2">
+         <wsdl:input message="requestMessage"/>
+         <wsdl:output message="replyMessage"/>
+      </wsdl:operation>
+   </wsdl:portType>
+
+   
+   <wsdl:binding name="TestStaticPick1Binding" type="tns:TestStaticPick1PT">
+      <wsdl:operation name="request"/>
+      <wsdl:operation name="continue1"/>
+      <wsdl:operation name="continue2"/>
+   </wsdl:binding>
+   <wsdl:service name="TestStaticPick1Service">
+      <wsdl:port name="TestStaticPick1Port" binding="tns:TestStaticPick1Binding">
+      </wsdl:port>
+   </wsdl:service>
+   
+   <plnk:partnerLinkType name="TestStaticPick1Request">
+      <plnk:role name="TestStaticPick1Service" portType="TestStaticPick1PT"/>
+   </plnk:partnerLinkType>
+
+   <plnk:partnerLinkType name="probeRequest">
+	  <plnk:role name="probeService" portType="prb:probeMessagePT"/>
+   </plnk:partnerLinkType>
+
+   <prop:property name="testProbeID" type="xsd:string"/>
+   <prop:propertyAlias propertyName="tns:testProbeID" messageType="tns:requestMessage" part="requestID"/>
+
+</wsdl:definitions>

Modified: ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestSubTreeAssign/TestSubTreeAssign.wsdl
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestSubTreeAssign/TestSubTreeAssign.wsdl?rev=737256&r1=737255&r2=737256&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestSubTreeAssign/TestSubTreeAssign.wsdl (original)
+++ ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestSubTreeAssign/TestSubTreeAssign.wsdl Fri Jan 23 23:53:17 2009
@@ -1,102 +1,102 @@
-<!--
-  ~ 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/TestSubTreeAssign.wsdl"
-  xmlns:tns="http://ode/bpel/unit-test/TestSubTreeAssign.wsdl"
-  xmlns:typens="http://ode/bpel/unit-test/TestSubTreeAssign.wsdl.types"
-  xmlns="http://ode/bpel/unit-test/TestSubTreeAssign.wsdl"
-  xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
-  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
-  xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"      
-  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-  xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop">
-
-   <wsdl:types>
- 
-     <xsd:schema
-       targetNamespace="http://ode/bpel/unit-test/TestSubTreeAssign.wsdl.types"
-       xmlns="http://ode/bpel/unit-test/TestSubTreeAssign.wsdl.types"
-                xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-      
-      <xsd:element name="aTestMessage" type="testMessage"></xsd:element>
-	  <xsd:element name="indicator" type="xsd:string" abstract="true"/>
-	  <xsd:element name="indicatorOne" type="xsd:string" substitutionGroup="indicator"/>
-	  <xsd:element name="indicatorTwo" type="xsd:string" substitutionGroup="indicator"/>
-      
-      <xsd:complexType name="typeIndicator">
-	    <xsd:sequence>
-	         <xsd:element ref="indicatorOne"/>
-	         <xsd:element ref="indicatorTwo"/>
-        </xsd:sequence>
-	  </xsd:complexType>
-      <xsd:complexType name="testMessage">
-        <xsd:sequence>
-             <xsd:element name="requestID" type="xsd:string"/>
-             <xsd:element name="requestText" type="xsd:string"/>
-             <xsd:element name="typeIndicators" type="typeIndicator"/>
-        </xsd:sequence>
-      </xsd:complexType>
-
-    </xsd:schema>
-  </wsdl:types>
-
-  <wsdl:message name="requestMessage">
-    <wsdl:part name="requestMessageData" element="typens:aTestMessage"/>
-  </wsdl:message>
-   
-  <wsdl:message name="replyMessage">
-    <wsdl:part name="replyID" type="xsd:string"/>
-    <wsdl:part name="replyText" type="xsd:string"/>
-  </wsdl:message>
-   
-  <wsdl:portType name="TestSubTreeAssignPT">
-    <wsdl:operation name="request">
-      <wsdl:input message="requestMessage"/>
-      <wsdl:output message="replyMessage"/>
-    </wsdl:operation>
-  </wsdl:portType>
-  
-  <wsdl:binding name="TestSubTreeAssignBinding" type="tns:TestSubTreeAssignPT">
-    <wsdl:operation name="request">
-    </wsdl:operation>
-  </wsdl:binding>
-  <wsdl:service name="TestSubTreeAssignService">
-    <wsdl:port name="TestSubTreeAssignPort" binding="tns:TestSubTreeAssignBinding">
-    </wsdl:port>
-  </wsdl:service>
-
-  <plnk:partnerLinkType name="TestSubTreeAssignRequest">
-    <plnk:role name="TestSubTreeAssignService" portType="TestSubTreeAssignPT"/>
-   </plnk:partnerLinkType>
-
-   <plnk:partnerLinkType name="probeRequest">
-	<plnk:role name="probeService" portType="prb:probeMessagePT"/>
-   </plnk:partnerLinkType>
-   
-  <vprop:property name="testProbeID" type="xsd:string"/>
-  <vprop:propertyAlias propertyName="tns:testProbeID" messageType="tns:requestMessage"/>
-  
-  <vprop:property name="testPath" type="xsd:string"/>
-  <vprop:propertyAlias propertyName="tns:testPath" messageType="tns:requestMessage" part="requestMessageData">
-    <vprop:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0">
-      typeIndicators/typens:indicatorTwo
-    </vprop:query> 
-  </vprop:propertyAlias>
-
-</wsdl:definitions>
+<!--
+  ~ 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/TestSubTreeAssign.wsdl"
+  xmlns:tns="http://ode/bpel/unit-test/TestSubTreeAssign.wsdl"
+  xmlns:typens="http://ode/bpel/unit-test/TestSubTreeAssign.wsdl.types"
+  xmlns="http://ode/bpel/unit-test/TestSubTreeAssign.wsdl"
+  xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
+  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+  xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"      
+  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+  xmlns:vprop="http://docs.oasis-open.org/wsbpel/2.0/varprop">
+
+   <wsdl:types>
+ 
+     <xsd:schema
+       targetNamespace="http://ode/bpel/unit-test/TestSubTreeAssign.wsdl.types"
+       xmlns="http://ode/bpel/unit-test/TestSubTreeAssign.wsdl.types"
+                xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+      
+      <xsd:element name="aTestMessage" type="testMessage"></xsd:element>
+	  <xsd:element name="indicator" type="xsd:string" abstract="true"/>
+	  <xsd:element name="indicatorOne" type="xsd:string" substitutionGroup="indicator"/>
+	  <xsd:element name="indicatorTwo" type="xsd:string" substitutionGroup="indicator"/>
+      
+      <xsd:complexType name="typeIndicator">
+	    <xsd:sequence>
+	         <xsd:element ref="indicatorOne"/>
+	         <xsd:element ref="indicatorTwo"/>
+        </xsd:sequence>
+	  </xsd:complexType>
+      <xsd:complexType name="testMessage">
+        <xsd:sequence>
+             <xsd:element name="requestID" type="xsd:string"/>
+             <xsd:element name="requestText" type="xsd:string"/>
+             <xsd:element name="typeIndicators" type="typeIndicator"/>
+        </xsd:sequence>
+      </xsd:complexType>
+
+    </xsd:schema>
+  </wsdl:types>
+
+  <wsdl:message name="requestMessage">
+    <wsdl:part name="requestMessageData" element="typens:aTestMessage"/>
+  </wsdl:message>
+   
+  <wsdl:message name="replyMessage">
+    <wsdl:part name="replyID" type="xsd:string"/>
+    <wsdl:part name="replyText" type="xsd:string"/>
+  </wsdl:message>
+   
+  <wsdl:portType name="TestSubTreeAssignPT">
+    <wsdl:operation name="request">
+      <wsdl:input message="requestMessage"/>
+      <wsdl:output message="replyMessage"/>
+    </wsdl:operation>
+  </wsdl:portType>
+  
+  <wsdl:binding name="TestSubTreeAssignBinding" type="tns:TestSubTreeAssignPT">
+    <wsdl:operation name="request">
+    </wsdl:operation>
+  </wsdl:binding>
+  <wsdl:service name="TestSubTreeAssignService">
+    <wsdl:port name="TestSubTreeAssignPort" binding="tns:TestSubTreeAssignBinding">
+    </wsdl:port>
+  </wsdl:service>
+
+  <plnk:partnerLinkType name="TestSubTreeAssignRequest">
+    <plnk:role name="TestSubTreeAssignService" portType="TestSubTreeAssignPT"/>
+   </plnk:partnerLinkType>
+
+   <plnk:partnerLinkType name="probeRequest">
+	<plnk:role name="probeService" portType="prb:probeMessagePT"/>
+   </plnk:partnerLinkType>
+   
+  <vprop:property name="testProbeID" type="xsd:string"/>
+  <vprop:propertyAlias propertyName="tns:testProbeID" messageType="tns:requestMessage"/>
+  
+  <vprop:property name="testPath" type="xsd:string"/>
+  <vprop:propertyAlias propertyName="tns:testPath" messageType="tns:requestMessage" part="requestMessageData">
+    <vprop:query queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0">
+      typeIndicators/typens:indicatorTwo
+    </vprop:query> 
+  </vprop:propertyAlias>
+
+</wsdl:definitions>

Modified: ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestTimer/TestTimer.bpel
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestTimer/TestTimer.bpel?rev=737256&r1=737255&r2=737256&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestTimer/TestTimer.bpel (original)
+++ ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestTimer/TestTimer.bpel Fri Jan 23 23:53:17 2009
@@ -1,97 +1,97 @@
-<!--
-	~ 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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-	xsi:schemaLocation="http://docs.oasis-open.org/wsbpel/2.0/process/executable ../../../../../../../bpel-schemas/src/main/resources/wsbpel_executable.xsd"
-	xmlns:tns="http://ode/bpel/unit-test/testTimer"
-	xmlns:wns="http://ode/bpel/unit-test/testTimer.wsdl"
-	xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
-	xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-	name="TestTimerProcess"
-	targetNamespace="http://ode/bpel/unit-test/testTimer"
-	queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-	expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-	suppressJoinFailure="yes">
- 
-	<import location="TestTimer.wsdl"
-		namespace="http://ode/bpel/unit-test/testTimer.wsdl"
-		importType="http://schemas.xmlsoap.org/wsdl/" />
-	<import location="../ProbeService/probeService.wsdl"
-		namespace="http://ode/bpel/unit-test/ProbeService.wsdl"
-		importType="http://schemas.xmlsoap.org/wsdl/"/> 
- 
-	<!-- Unit test Timer Service Test -->
-	<partnerLinks>
-		<partnerLink name="request" partnerLinkType="wns:testTimerRequest" myRole="testTimerService"/>
-		<partnerLink name="probe" partnerLinkType="wns:probeRequest" partnerRole="probeService" initializePartnerRole="yes"/>
-	</partnerLinks>
-	
-	<variables>
-		<variable name="request" messageType="wns:requestMessage"/>
-		<variable name="probeInput" messageType="prb:probeMessage"/>
-		<variable name="reply" messageType="wns:replyMessage"/>
-	</variables>
-	<sequence>
-		<receive name="receive1" partnerLink="request" portType="wns:testTimerPT" operation="request" variable="request" createInstance="yes"/>
-		<!-- Copy input variables to internal accumulators -->
-		<assign name="assign1">
-			<copy>
-				<from variable="request" part="requestID"/>
-				<to variable="probeInput" part="probeName"/>
-			</copy>
-			<copy>
-				<from variable="request" part="requestText"/>
-				<to variable="probeInput" part="probeData"/>
-			</copy>
-		</assign>
-		
-		<invoke name="probe1" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
-		
-		<wait>
-			<for>'PT10S'</for>
-		</wait>
-		
-		<invoke name="probe2" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
-		
-		<!-- Copy input variables to internal accumulators -->
-		<assign name="assign2">
-			<copy>
-				<from variable="request" part="requestID"/>
-				<to variable="probeInput" part="probeName"/>
-			</copy>
-		</assign>
-		
-		<invoke name="probe3" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
-		
-		<!-- copy internal accumulators to the reply message -->
-		
-		<assign name="assign3">
-			<copy>
-				<from variable="probeInput" part="probeName"/>
-				<to variable="reply" part="replyID"/>
-			</copy>
-			<copy>
-				<from variable="probeInput" part="probeData"/>
-				<to variable="reply" part="replyText"/>
-			</copy>
-		</assign>
-		
-		<reply name="reply" partnerLink="request" portType="wns:testTimerPT" operation="request" variable="reply"/>
-	</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
+	~ 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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://docs.oasis-open.org/wsbpel/2.0/process/executable ../../../../../../../bpel-schemas/src/main/resources/wsbpel_executable.xsd"
+	xmlns:tns="http://ode/bpel/unit-test/testTimer"
+	xmlns:wns="http://ode/bpel/unit-test/testTimer.wsdl"
+	xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
+	xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
+	name="TestTimerProcess"
+	targetNamespace="http://ode/bpel/unit-test/testTimer"
+	queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+	expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+	suppressJoinFailure="yes">
+ 
+	<import location="TestTimer.wsdl"
+		namespace="http://ode/bpel/unit-test/testTimer.wsdl"
+		importType="http://schemas.xmlsoap.org/wsdl/" />
+	<import location="../ProbeService/probeService.wsdl"
+		namespace="http://ode/bpel/unit-test/ProbeService.wsdl"
+		importType="http://schemas.xmlsoap.org/wsdl/"/> 
+ 
+	<!-- Unit test Timer Service Test -->
+	<partnerLinks>
+		<partnerLink name="request" partnerLinkType="wns:testTimerRequest" myRole="testTimerService"/>
+		<partnerLink name="probe" partnerLinkType="wns:probeRequest" partnerRole="probeService" initializePartnerRole="yes"/>
+	</partnerLinks>
+	
+	<variables>
+		<variable name="request" messageType="wns:requestMessage"/>
+		<variable name="probeInput" messageType="prb:probeMessage"/>
+		<variable name="reply" messageType="wns:replyMessage"/>
+	</variables>
+	<sequence>
+		<receive name="receive1" partnerLink="request" portType="wns:testTimerPT" operation="request" variable="request" createInstance="yes"/>
+		<!-- Copy input variables to internal accumulators -->
+		<assign name="assign1">
+			<copy>
+				<from variable="request" part="requestID"/>
+				<to variable="probeInput" part="probeName"/>
+			</copy>
+			<copy>
+				<from variable="request" part="requestText"/>
+				<to variable="probeInput" part="probeData"/>
+			</copy>
+		</assign>
+		
+		<invoke name="probe1" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
+		
+		<wait>
+			<for>'PT10S'</for>
+		</wait>
+		
+		<invoke name="probe2" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
+		
+		<!-- Copy input variables to internal accumulators -->
+		<assign name="assign2">
+			<copy>
+				<from variable="request" part="requestID"/>
+				<to variable="probeInput" part="probeName"/>
+			</copy>
+		</assign>
+		
+		<invoke name="probe3" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
+		
+		<!-- copy internal accumulators to the reply message -->
+		
+		<assign name="assign3">
+			<copy>
+				<from variable="probeInput" part="probeName"/>
+				<to variable="reply" part="replyID"/>
+			</copy>
+			<copy>
+				<from variable="probeInput" part="probeData"/>
+				<to variable="reply" part="replyText"/>
+			</copy>
+		</assign>
+		
+		<reply name="reply" partnerLink="request" portType="wns:testTimerPT" operation="request" variable="reply"/>
+	</sequence>
+</process>

Modified: ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestTimer/TestTimer.wsdl
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestTimer/TestTimer.wsdl?rev=737256&r1=737255&r2=737256&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestTimer/TestTimer.wsdl (original)
+++ ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestTimer/TestTimer.wsdl Fri Jan 23 23:53:17 2009
@@ -1,68 +1,68 @@
-<!--
-	~ 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/testTimer.wsdl" 
-	   xmlns="http://ode/bpel/unit-test/testTimer.wsdl"
-	xmlns:tns="http://ode/bpel/unit-test/testTimer.wsdl" 
-	xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" 
-		xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-	xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
-	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
-
-	<wsdl:message name="requestMessage">
-		<wsdl:part name="requestID" type="xsd:string"/>
-		<wsdl:part name="requestText" type="xsd:string"/>
-	</wsdl:message>
-
-	<wsdl:message name="replyMessage">
-		<wsdl:part name="replyID" type="xsd:string"/>
-		<wsdl:part name="replyText" type="xsd:string"/>
-	</wsdl:message>
-
-	<!-- portType supported by the test2 process -->
-	<wsdl:portType name="testTimerPT">
-		<wsdl:operation name="request">
-			<wsdl:input message="requestMessage"/>
-			<wsdl:output message="replyMessage"/>
-		</wsdl:operation>
+<!--
+	~ 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/testTimer.wsdl" 
+	   xmlns="http://ode/bpel/unit-test/testTimer.wsdl"
+	xmlns:tns="http://ode/bpel/unit-test/testTimer.wsdl" 
+	xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype" 
+		xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+	xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
+	xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
+
+	<wsdl:message name="requestMessage">
+		<wsdl:part name="requestID" type="xsd:string"/>
+		<wsdl:part name="requestText" type="xsd:string"/>
+	</wsdl:message>
+
+	<wsdl:message name="replyMessage">
+		<wsdl:part name="replyID" type="xsd:string"/>
+		<wsdl:part name="replyText" type="xsd:string"/>
+	</wsdl:message>
+
+	<!-- portType supported by the test2 process -->
+	<wsdl:portType name="testTimerPT">
+		<wsdl:operation name="request">
+			<wsdl:input message="requestMessage"/>
+			<wsdl:output message="replyMessage"/>
+		</wsdl:operation>
 		<wsdl:operation name="continue">
-			<wsdl:input message="requestMessage"/>
+			<wsdl:input message="requestMessage"/>
 			<wsdl:output message="replyMessage"/>			
-		</wsdl:operation>
-	</wsdl:portType>
-
-	<wsdl:binding name="testTimerBinding" type="tns:testTimerPT">
-		<wsdl:operation name="request">
-		</wsdl:operation>
+		</wsdl:operation>
+	</wsdl:portType>
+
+	<wsdl:binding name="testTimerBinding" type="tns:testTimerPT">
+		<wsdl:operation name="request">
+		</wsdl:operation>
 		<wsdl:operation name="continue">
-		</wsdl:operation>
-	</wsdl:binding>
-	<wsdl:service name="testTimerService">
-		<wsdl:port name="testTimerPort" binding="tns:testTimerBinding">
-		</wsdl:port>
-	</wsdl:service>
-	
-	<plnk:partnerLinkType name="testTimerRequest">
-		<plnk:role name="testTimerService" portType="testTimerPT"/>
-	</plnk:partnerLinkType>
-
-	<plnk:partnerLinkType name="probeRequest" >
-		<plnk:role name="probeService" portType="prb:probeMessagePT"/>
-	</plnk:partnerLinkType>
-</wsdl:definitions>
+		</wsdl:operation>
+	</wsdl:binding>
+	<wsdl:service name="testTimerService">
+		<wsdl:port name="testTimerPort" binding="tns:testTimerBinding">
+		</wsdl:port>
+	</wsdl:service>
+	
+	<plnk:partnerLinkType name="testTimerRequest">
+		<plnk:role name="testTimerService" portType="testTimerPT"/>
+	</plnk:partnerLinkType>
+
+	<plnk:partnerLinkType name="probeRequest" >
+		<plnk:role name="probeService" portType="prb:probeMessagePT"/>
+	</plnk:partnerLinkType>
+</wsdl:definitions>

Modified: ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace1/TestXPathNamespace1.bpel
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace1/TestXPathNamespace1.bpel?rev=737256&r1=737255&r2=737256&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace1/TestXPathNamespace1.bpel (original)
+++ ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace1/TestXPathNamespace1.bpel Fri Jan 23 23:53:17 2009
@@ -1,63 +1,63 @@
-<!--
-	~ 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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-  xsi:schemaLocation="http://docs.oasis-open.org/wsbpel/2.0/process/executable ../../../../../../../bpel-schemas/src/main/resources/wsbpel_executable.xsd"
-	xmlns:tns="http://ode/bpel/unit-test/TestXPathNamespace1"
-	xmlns:wns="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl"
-	targetNamespace="http://ode/bpel/unit-test/TestXPathNamespace1"
-	xmlns:types1="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl.types1"
-	xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
-	xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-	name="TestXPathNamespace1"
-	queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-	expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-	suppressJoinFailure="yes">
-	
-	<import location="TestXPathNamespace1.wsdl"
-		namespace="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl"
-		importType="http://schemas.xmlsoap.org/wsdl/" />
-	<import location="../ProbeService/probeService.wsdl"
-		namespace="http://ode/bpel/unit-test/ProbeService.wsdl"
-		importType="http://schemas.xmlsoap.org/wsdl/"/>
-	
-	
-	<!-- test namespace syntax within XPATH expression -->
-	<partnerLinks>
-		<partnerLink name="request" partnerLinkType="wns:TestXPathNamespace1Request" myRole="TestXPathNamespace1Service"/>
-	</partnerLinks>
-	<variables>
-		<variable name="request" messageType="wns:requestMessage1"/>
-		<variable name="reply" messageType="wns:replyMessage1"/>
-	</variables>
-	<sequence>
-		<receive name="receive1" partnerLink="request" portType="wns:TestXPathNamespace1PT" operation="request" variable="request" createInstance="yes"> </receive>
-		<!-- Copy input variables to internal accumulators -->
-		<assign name="assign1">
-			<copy>
-				<from>$request.requestMessageData/requestID</from>
-				<to variable="reply" part="replyID"/>
-			</copy>
-			<copy>
-				<from xmlns:foo="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl.footypes">$request.requestMessageData/typeIndicators/foo:indicatorTwo</from>
-				<to variable="reply" part="replyText"/>
-			</copy>
-		</assign>
-		<reply name="reply" partnerLink="request" portType="wns:TestXPathNamespace1PT" operation="request" variable="reply"> </reply>
-	</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
+	~ 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 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://docs.oasis-open.org/wsbpel/2.0/process/executable ../../../../../../../bpel-schemas/src/main/resources/wsbpel_executable.xsd"
+	xmlns:tns="http://ode/bpel/unit-test/TestXPathNamespace1"
+	xmlns:wns="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl"
+	targetNamespace="http://ode/bpel/unit-test/TestXPathNamespace1"
+	xmlns:types1="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl.types1"
+	xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
+	xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
+	name="TestXPathNamespace1"
+	queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+	expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+	suppressJoinFailure="yes">
+	
+	<import location="TestXPathNamespace1.wsdl"
+		namespace="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl"
+		importType="http://schemas.xmlsoap.org/wsdl/" />
+	<import location="../ProbeService/probeService.wsdl"
+		namespace="http://ode/bpel/unit-test/ProbeService.wsdl"
+		importType="http://schemas.xmlsoap.org/wsdl/"/>
+	
+	
+	<!-- test namespace syntax within XPATH expression -->
+	<partnerLinks>
+		<partnerLink name="request" partnerLinkType="wns:TestXPathNamespace1Request" myRole="TestXPathNamespace1Service"/>
+	</partnerLinks>
+	<variables>
+		<variable name="request" messageType="wns:requestMessage1"/>
+		<variable name="reply" messageType="wns:replyMessage1"/>
+	</variables>
+	<sequence>
+		<receive name="receive1" partnerLink="request" portType="wns:TestXPathNamespace1PT" operation="request" variable="request" createInstance="yes"> </receive>
+		<!-- Copy input variables to internal accumulators -->
+		<assign name="assign1">
+			<copy>
+				<from>$request.requestMessageData/requestID</from>
+				<to variable="reply" part="replyID"/>
+			</copy>
+			<copy>
+				<from xmlns:foo="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl.footypes">$request.requestMessageData/typeIndicators/foo:indicatorTwo</from>
+				<to variable="reply" part="replyText"/>
+			</copy>
+		</assign>
+		<reply name="reply" partnerLink="request" portType="wns:TestXPathNamespace1PT" operation="request" variable="reply"> </reply>
+	</sequence>
+</process>

Modified: ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace1/TestXPathNamespace1.wsdl
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace1/TestXPathNamespace1.wsdl?rev=737256&r1=737255&r2=737256&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace1/TestXPathNamespace1.wsdl (original)
+++ ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace1/TestXPathNamespace1.wsdl Fri Jan 23 23:53:17 2009
@@ -1,92 +1,92 @@
-<!--
-  ~ 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/TestXPathNamespace1.wsdl"
-  xmlns:tns="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl"
-  xmlns:types1="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl.types1"
-  xmlns="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl"
-  xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
-  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
-  xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"      
-  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-  xmlns:bpws="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
-    
-  <!-- type defs -->
-  <wsdl:types>
- 
-     <xsd:schema
-       targetNamespace="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl.types1"
-       xmlns="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl.types1"
-       xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-      <xsd:complexType name="typeIndicator">
-	  <xsd:sequence>
-	    <xsd:element name="indicatorOne" type="xsd:string"/>
-	    <xsd:element name="indicatorTwo" type="xsd:string"/>
-        </xsd:sequence>
-	</xsd:complexType>
-
-      <xsd:complexType name="testMessage">
-        <xsd:sequence>
-          <xsd:element name="requestID" type="xsd:string"/>
-          <xsd:element name="requestText" type="xsd:string"/>
-          <xsd:element name="typeIndicators" type="typeIndicator"/>
-        </xsd:sequence>
-      </xsd:complexType>
-
-    </xsd:schema>
-  </wsdl:types>
-
-  <wsdl:message name="requestMessage1">
-     <wsdl:part name="requestMessageData" type="types1:testMessage"/>
-  </wsdl:message>
-   
-  <wsdl:message name="replyMessage1">
-    <wsdl:part name="replyID" type="xsd:string"/>
-    <wsdl:part name="replyText" type="xsd:string"/>
-  </wsdl:message>
-   
-
-   <!-- portType supported by the test2 process -->
-
-  <wsdl:portType name="TestXPathNamespace1PT">
-    <wsdl:operation name="request">
-      <wsdl:input message="requestMessage1"/>
-      <wsdl:output message="replyMessage1"/>
-    </wsdl:operation>
-  </wsdl:portType>
-  
-  <wsdl:binding name="TestXPathNamespace1Binding" type="tns:TestXPathNamespace1PT">
-    <wsdl:operation name="request">
-    </wsdl:operation>
-  </wsdl:binding>
-  <wsdl:service name="TestXPathNamespace1Service">
-    <wsdl:port name="TestXPathNamespace1Port" binding="tns:TestXPathNamespace1Binding">
-    </wsdl:port>
-  </wsdl:service>
-
-  <plnk:partnerLinkType name="TestXPathNamespace1Request">
-    <plnk:role name="TestXPathNamespace1Service" portType="TestXPathNamespace1PT"/>
-   </plnk:partnerLinkType>
-
-   <plnk:partnerLinkType name="probeRequest">
-	<plnk:role name="probeService" portType="prb:probeMessagePT"/>
-   </plnk:partnerLinkType>
-
-</wsdl:definitions>
+<!--
+  ~ 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/TestXPathNamespace1.wsdl"
+  xmlns:tns="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl"
+  xmlns:types1="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl.types1"
+  xmlns="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl"
+  xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
+  xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+  xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"      
+  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+  xmlns:bpws="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
+    
+  <!-- type defs -->
+  <wsdl:types>
+ 
+     <xsd:schema
+       targetNamespace="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl.types1"
+       xmlns="http://ode/bpel/unit-test/TestXPathNamespace1.wsdl.types1"
+       xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+      <xsd:complexType name="typeIndicator">
+	  <xsd:sequence>
+	    <xsd:element name="indicatorOne" type="xsd:string"/>
+	    <xsd:element name="indicatorTwo" type="xsd:string"/>
+        </xsd:sequence>
+	</xsd:complexType>
+
+      <xsd:complexType name="testMessage">
+        <xsd:sequence>
+          <xsd:element name="requestID" type="xsd:string"/>
+          <xsd:element name="requestText" type="xsd:string"/>
+          <xsd:element name="typeIndicators" type="typeIndicator"/>
+        </xsd:sequence>
+      </xsd:complexType>
+
+    </xsd:schema>
+  </wsdl:types>
+
+  <wsdl:message name="requestMessage1">
+     <wsdl:part name="requestMessageData" type="types1:testMessage"/>
+  </wsdl:message>
+   
+  <wsdl:message name="replyMessage1">
+    <wsdl:part name="replyID" type="xsd:string"/>
+    <wsdl:part name="replyText" type="xsd:string"/>
+  </wsdl:message>
+   
+
+   <!-- portType supported by the test2 process -->
+
+  <wsdl:portType name="TestXPathNamespace1PT">
+    <wsdl:operation name="request">
+      <wsdl:input message="requestMessage1"/>
+      <wsdl:output message="replyMessage1"/>
+    </wsdl:operation>
+  </wsdl:portType>
+  
+  <wsdl:binding name="TestXPathNamespace1Binding" type="tns:TestXPathNamespace1PT">
+    <wsdl:operation name="request">
+    </wsdl:operation>
+  </wsdl:binding>
+  <wsdl:service name="TestXPathNamespace1Service">
+    <wsdl:port name="TestXPathNamespace1Port" binding="tns:TestXPathNamespace1Binding">
+    </wsdl:port>
+  </wsdl:service>
+
+  <plnk:partnerLinkType name="TestXPathNamespace1Request">
+    <plnk:role name="TestXPathNamespace1Service" portType="TestXPathNamespace1PT"/>
+   </plnk:partnerLinkType>
+
+   <plnk:partnerLinkType name="probeRequest">
+	<plnk:role name="probeService" portType="prb:probeMessagePT"/>
+   </plnk:partnerLinkType>
+
+</wsdl:definitions>

Modified: ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace2/TestXPathNamespace2.bpel
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace2/TestXPathNamespace2.bpel?rev=737256&r1=737255&r2=737256&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace2/TestXPathNamespace2.bpel (original)
+++ ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace2/TestXPathNamespace2.bpel Fri Jan 23 23:53:17 2009
@@ -1,80 +1,80 @@
-<!--
-  ~ 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.
--->
-
+<!--
+  ~ 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.
+-->
+
 <bpel:process xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://docs.oasis-open.org/wsbpel/2.0/process/executable ../../../../../../../bpel-schemas/src/main/resources/wsbpel_executable.xsd"
-  xmlns:tns="http://ode/bpel/unit-test/TestXPathNamespace2"
+  xmlns:tns="http://ode/bpel/unit-test/TestXPathNamespace2"
   xmlns:wns="http://ode/bpel/unit-test/TestXPathNamespace2.wsdl"
  xmlns:ns0="http://www.company.org"
  xmlns:ns1="http://www.person.org"
  xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
  xmlns:ns2="http://www.product.org"
-  name="TestXPathNamespace2"
-  queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+  name="TestXPathNamespace2"
+  queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
   expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-  targetNamespace="http://ode/bpel/unit-test/TestXPathNamespace2">
- 
- 
-  <bpel:import location="TestXPathNamespace2.wsdl"
-    namespace="http://ode/bpel/unit-test/TestXPathNamespace2.wsdl"
-    importType="http://schemas.xmlsoap.org/wsdl/" />
- 
-  <bpel:partnerLinks>
-    <bpel:partnerLink name="request" partnerLinkType="wns:TestXPathNamespace2Request" myRole="TestXPathNamespace2Service"/>
-  </bpel:partnerLinks>
-  <bpel:scope name="ID1125327950242396">
-    <bpel:variables>
-      <bpel:variable messageType="wns:operation1Request" name="BP112532795028938"/>
-      <bpel:variable messageType="wns:operation1Response" name="BP11253284037450"/>
-      <bpel:variable name="newVariable1" element="ns0:Company"/>
-    </bpel:variables>
-    <bpel:flow>
-      <bpel:sequence>
-        <bpel:receive name="ID1125327950289399" createInstance="yes" operation="operation1" partnerLink="request" portType="wns:TestXPathNamespace2PT" variable="BP112532795028938"/>
-        <bpel:assign name="BP11253340188129">
-          <bpel:copy>
-            <bpel:from>$BP112532795028938.newParameter1</bpel:from>
-            <bpel:to>$newVariable1</bpel:to>
-          </bpel:copy>
-        </bpel:assign>
-        <bpel:assign name="BP112533401973410">
-          <bpel:copy>
-            <bpel:from> 
-              <bpel:literal>Foo Name</bpel:literal>
-            </bpel:from>
-            <bpel:to>$newVariable1/ns0:Person/ns1:Name</bpel:to>
-          </bpel:copy>
-        </bpel:assign>
-        <bpel:assign name="BP112533402114011">
-          <bpel:copy>
-            <bpel:from><bpel:literal>Foo Type</bpel:literal></bpel:from>
-            <bpel:to>$newVariable1/ns0:Product/ns2:Type</bpel:to>
-          </bpel:copy>
-        </bpel:assign>
-        <bpel:assign name="BP112533402345212">
-          <bpel:copy>
-            <bpel:from variable="newVariable1"/>
-            <bpel:to part="newParameter2" variable="BP11253284037450"/>
-          </bpel:copy>
-        </bpel:assign>
-        <bpel:reply name="ID11253284037292" operation="operation1" partnerLink="request" portType="wns:TestXPathNamespace2PT" variable="BP11253284037450"/>
-      </bpel:sequence>
-    </bpel:flow>
-  </bpel:scope>
+  targetNamespace="http://ode/bpel/unit-test/TestXPathNamespace2">
+ 
+ 
+  <bpel:import location="TestXPathNamespace2.wsdl"
+    namespace="http://ode/bpel/unit-test/TestXPathNamespace2.wsdl"
+    importType="http://schemas.xmlsoap.org/wsdl/" />
+ 
+  <bpel:partnerLinks>
+    <bpel:partnerLink name="request" partnerLinkType="wns:TestXPathNamespace2Request" myRole="TestXPathNamespace2Service"/>
+  </bpel:partnerLinks>
+  <bpel:scope name="ID1125327950242396">
+    <bpel:variables>
+      <bpel:variable messageType="wns:operation1Request" name="BP112532795028938"/>
+      <bpel:variable messageType="wns:operation1Response" name="BP11253284037450"/>
+      <bpel:variable name="newVariable1" element="ns0:Company"/>
+    </bpel:variables>
+    <bpel:flow>
+      <bpel:sequence>
+        <bpel:receive name="ID1125327950289399" createInstance="yes" operation="operation1" partnerLink="request" portType="wns:TestXPathNamespace2PT" variable="BP112532795028938"/>
+        <bpel:assign name="BP11253340188129">
+          <bpel:copy>
+            <bpel:from>$BP112532795028938.newParameter1</bpel:from>
+            <bpel:to>$newVariable1</bpel:to>
+          </bpel:copy>
+        </bpel:assign>
+        <bpel:assign name="BP112533401973410">
+          <bpel:copy>
+            <bpel:from> 
+              <bpel:literal>Foo Name</bpel:literal>
+            </bpel:from>
+            <bpel:to>$newVariable1/ns0:Person/ns1:Name</bpel:to>
+          </bpel:copy>
+        </bpel:assign>
+        <bpel:assign name="BP112533402114011">
+          <bpel:copy>
+            <bpel:from><bpel:literal>Foo Type</bpel:literal></bpel:from>
+            <bpel:to>$newVariable1/ns0:Product/ns2:Type</bpel:to>
+          </bpel:copy>
+        </bpel:assign>
+        <bpel:assign name="BP112533402345212">
+          <bpel:copy>
+            <bpel:from variable="newVariable1"/>
+            <bpel:to part="newParameter2" variable="BP11253284037450"/>
+          </bpel:copy>
+        </bpel:assign>
+        <bpel:reply name="ID11253284037292" operation="operation1" partnerLink="request" portType="wns:TestXPathNamespace2PT" variable="BP11253284037450"/>
+      </bpel:sequence>
+    </bpel:flow>
+  </bpel:scope>
 </bpel:process>
\ No newline at end of file

Modified: ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace2/TestXPathNamespace2.wsdl
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace2/TestXPathNamespace2.wsdl?rev=737256&r1=737255&r2=737256&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace2/TestXPathNamespace2.wsdl (original)
+++ ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/bpel/2.0/TestXPathNamespace2/TestXPathNamespace2.wsdl Fri Jan 23 23:53:17 2009
@@ -1,31 +1,31 @@
-<!--
-    ~ 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/TestXPathNamespace2.wsdl"
-    xmlns:tns="http://ode/bpel/unit-test/TestXPathNamespace2.wsdl"
-    xmlns:tns1="http://www.person.org"
-    xmlns:tns2="http://www.product.org"
+<!--
+    ~ 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/TestXPathNamespace2.wsdl"
+    xmlns:tns="http://ode/bpel/unit-test/TestXPathNamespace2.wsdl"
+    xmlns:tns1="http://www.person.org"
+    xmlns:tns2="http://www.product.org"
     xmlns:tns3="http://www.company.org"
-    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
-    xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"      
-    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-    xmlns:bpws="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
+    xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
+    xmlns:plnk="http://docs.oasis-open.org/wsbpel/2.0/plnktype"      
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
+    xmlns:bpws="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
     
     <wsdl:types>
         <xsd:schema elementFormDefault="unqualified" targetNamespace="http://www.person.org" xmlns="http://www.person.org" 
@@ -46,9 +46,9 @@
             </xsd:complexType>
         </xsd:schema>
         <xsd:schema elementFormDefault="unqualified" targetNamespace="http://www.company.org" xmlns="http://www.company.org" xmlns:per="http://www.person.org" xmlns:pro="http://www.product.org"
-            xmlns:xsd="http://www.w3.org/2001/XMLSchema">
-            <xsd:import namespace="http://www.person.org"></xsd:import>
-            <xsd:import namespace="http://www.product.org"></xsd:import>
+            xmlns:xsd="http://www.w3.org/2001/XMLSchema">
+            <xsd:import namespace="http://www.person.org"></xsd:import>
+            <xsd:import namespace="http://www.product.org"></xsd:import>
             <xsd:element name="Company">
                 <xsd:complexType>
                     <xsd:sequence>
@@ -58,7 +58,7 @@
                 </xsd:complexType>
             </xsd:element>
         </xsd:schema>
-    </wsdl:types>
+    </wsdl:types>
     
     <wsdl:message name="operation1Request">
         <wsdl:part name="newParameter1" element="tns3:Company"/>
@@ -71,7 +71,7 @@
             <wsdl:input name="operation1Request" message="tns:operation1Request"/>
             <wsdl:output name="operation1Response" message="tns:operation1Response"/>
         </wsdl:operation>
-    </wsdl:portType>
+    </wsdl:portType>
     
     <wsdl:binding name="TestXPathNamespace2Binding" type="tns:TestXPathNamespace2PT">
         <wsdl:operation name="operation1">
@@ -82,10 +82,10 @@
     <wsdl:service name="TestXPathNamespace2Service">
         <wsdl:port name="TestXPathNamespace2Port" binding="tns:TestXPathNamespace2Binding">
         </wsdl:port>
-    </wsdl:service>
-    
-    <plnk:partnerLinkType name="TestXPathNamespace2Request">
-        <plnk:role name="TestXPathNamespace2Service" portType="tns:TestXPathNamespace2PT"/>
-    </plnk:partnerLinkType>
+    </wsdl:service>
+    
+    <plnk:partnerLinkType name="TestXPathNamespace2Request">
+        <plnk:role name="TestXPathNamespace2Service" portType="tns:TestXPathNamespace2PT"/>
+    </plnk:partnerLinkType>
     
-</wsdl:definitions>
+</wsdl:definitions>

Modified: ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/log4j.properties
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/log4j.properties?rev=737256&r1=737255&r2=737256&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/log4j.properties (original)
+++ ode/branches/APACHE_ODE_1.X/bpel-test/src/test/resources/log4j.properties Fri Jan 23 23:53:17 2009
@@ -1,42 +1,42 @@
-#
-#    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.
-#
-
-# Set root logger level to WARN and its only appender to CONSOLE
-log4j.rootLogger=WARN, CONSOLE, FILE
-
-# log4j properties to work with commandline tools.
-log4j.category.org.mortbay=ERROR
-log4j.category.org.hibernate.type=WARN
-log4j.category.org.objectweb=ERROR
-log4j.category.org.apache.ode.axis2=DEBUG
-log4j.category.org.apache.ode.bpel.engine=DEBUG
-log4j.category.org.apache.ode.bpel.epr=INFO
-log4j.category.org.apache.ode.bpel.extvar.jdbc=DEBUG
-log4j.category.org.apache.ode.bpel.runtime=DEBUG
-log4j.category.org.apache.ode.daohib.bpel.CorrelatorDaoImpl=DEBUG
-
-# Console appender
-log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
-log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
-log4j.appender.CONSOLE.layout.ConversionPattern=%p - %C{1}.%M(%L) | %m%n
-
-log4j.appender.FILE=org.apache.log4j.FileAppender
-log4j.appender.FILE.File=bpel-test.log
-log4j.appender.FILE.layout=org.apache.log4j.PatternLayout
-log4j.appender.FILE.layout.ConversionPattern=%d{MM-dd@HH:mm:ss} %-5p (%13F:%L) %3x - %m%n
-log4j.appender.FILE.append=false
-
+#
+#    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.
+#
+
+# Set root logger level to WARN and its only appender to CONSOLE
+log4j.rootLogger=WARN, CONSOLE, FILE
+
+# log4j properties to work with commandline tools.
+log4j.category.org.mortbay=ERROR
+log4j.category.org.hibernate.type=WARN
+log4j.category.org.objectweb=ERROR
+log4j.category.org.apache.ode.axis2=DEBUG
+log4j.category.org.apache.ode.bpel.engine=DEBUG
+log4j.category.org.apache.ode.bpel.epr=INFO
+log4j.category.org.apache.ode.bpel.extvar.jdbc=DEBUG
+log4j.category.org.apache.ode.bpel.runtime=DEBUG
+log4j.category.org.apache.ode.daohib.bpel.CorrelatorDaoImpl=DEBUG
+
+# Console appender
+log4j.appender.CONSOLE=org.apache.log4j.ConsoleAppender
+log4j.appender.CONSOLE.layout=org.apache.log4j.PatternLayout
+log4j.appender.CONSOLE.layout.ConversionPattern=%p - %C{1}.%M(%L) | %m%n
+
+log4j.appender.FILE=org.apache.log4j.FileAppender
+log4j.appender.FILE.File=bpel-test.log
+log4j.appender.FILE.layout=org.apache.log4j.PatternLayout
+log4j.appender.FILE.layout.ConversionPattern=%d{MM-dd@HH:mm:ss} %-5p (%13F:%L) %3x - %m%n
+log4j.appender.FILE.append=false
+

Modified: ode/branches/APACHE_ODE_1.X/dao-hibernate/mvn-hibernate.xml
URL: http://svn.apache.org/viewvc/ode/branches/APACHE_ODE_1.X/dao-hibernate/mvn-hibernate.xml?rev=737256&r1=737255&r2=737256&view=diff
==============================================================================
--- ode/branches/APACHE_ODE_1.X/dao-hibernate/mvn-hibernate.xml (original)
+++ ode/branches/APACHE_ODE_1.X/dao-hibernate/mvn-hibernate.xml Fri Jan 23 23:53:17 2009
@@ -1,60 +1,60 @@
-<?xml version="1.0"?>
-
-<!--
-  ~ 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.
-  -->
-
-<project name="mvn-hibernate" default="hibernate">
-    <import file="../build/ant-common.xml" />
-    <import file="../build/ant-library.xml" />
-    <import file="../build/ant-xdoclet.xml" />
-
-    <!-- This is required since basedir may get changed during an earlier build cycle. Not sure why. -->
-    <property name="src.databases" value="${basedir}/src/hibernate"/>
-    <property name="build.classes" value="${basedir}/target/classes"/>
-    <property name="build.ddl" value="${build.classes}/ddl"/>
-    <property name="hibernate.dir" value="${basedir}/../buildlib/hibernate-2.1"/>
-
-    <target name="hibernate">
-        <taskdef name="hibernatedoclet" classname="xdoclet.modules.hibernate.HibernateDocletTask" classpathref="xdoclet-cpath"/>
-        <hibernatedoclet destdir="${build.classes}" excludedtags="@version,@author,@todo" force="false" mergedir="${build.classes}" verbose="false">
-        <hibernate version="2.0"/>
-            <fileset dir="${src.java}" includes="${src.hibernate.mask}"/>
-        </hibernatedoclet>
-
-        <taskdef name="schemaexport" classname="net.sf.hibernate.tool.hbm2ddl.SchemaExportTask">
-            <classpath>
-                <fileset dir="${hibernate.dir}" includes="hibernate2.jar"/>
-                <fileset dir="${hibernate.dir}/lib" includes="*.jar"/>
-                <path refid="cpath"/>
-                <fileset dir="../buildlib/commons-logging-1.0.5" includes="commons-logging-1.0.5.jar"/>
-                <fileset dir="../buildlib/commons-collections-3.1" includes="*.jar"/>
-                <pathelement location="${lib.log4j}"/>
-                <pathelement location="${build.classes}"/>
-            </classpath>
-        </taskdef>
-        <mkdir dir="${build.ddl}"/>
-        <foreach list="${databases}" delimiter="," trim="true" param="db" target="export" inheritAll="yes"/>
-    </target>
-
-    <target name="export">
-        <schemaexport properties="${src.databases}/${db}.properties" quiet="yes" text="yes" delimiter=";" output="${build.ddl}/${db}.sql">
-            <fileset dir="${build.classes}"><include name="**/*.hbm.xml"/><exclude name="**/HMessageExchangeProperty.hbm.xml"/></fileset>
-        </schemaexport>
-    </target>
+<?xml version="1.0"?>
+
+<!--
+  ~ 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.
+  -->
+
+<project name="mvn-hibernate" default="hibernate">
+    <import file="../build/ant-common.xml" />
+    <import file="../build/ant-library.xml" />
+    <import file="../build/ant-xdoclet.xml" />
+
+    <!-- This is required since basedir may get changed during an earlier build cycle. Not sure why. -->
+    <property name="src.databases" value="${basedir}/src/hibernate"/>
+    <property name="build.classes" value="${basedir}/target/classes"/>
+    <property name="build.ddl" value="${build.classes}/ddl"/>
+    <property name="hibernate.dir" value="${basedir}/../buildlib/hibernate-2.1"/>
+
+    <target name="hibernate">
+        <taskdef name="hibernatedoclet" classname="xdoclet.modules.hibernate.HibernateDocletTask" classpathref="xdoclet-cpath"/>
+        <hibernatedoclet destdir="${build.classes}" excludedtags="@version,@author,@todo" force="false" mergedir="${build.classes}" verbose="false">
+        <hibernate version="2.0"/>
+            <fileset dir="${src.java}" includes="${src.hibernate.mask}"/>
+        </hibernatedoclet>
+
+        <taskdef name="schemaexport" classname="net.sf.hibernate.tool.hbm2ddl.SchemaExportTask">
+            <classpath>
+                <fileset dir="${hibernate.dir}" includes="hibernate2.jar"/>
+                <fileset dir="${hibernate.dir}/lib" includes="*.jar"/>
+                <path refid="cpath"/>
+                <fileset dir="../buildlib/commons-logging-1.0.5" includes="commons-logging-1.0.5.jar"/>
+                <fileset dir="../buildlib/commons-collections-3.1" includes="*.jar"/>
+                <pathelement location="${lib.log4j}"/>
+                <pathelement location="${build.classes}"/>
+            </classpath>
+        </taskdef>
+        <mkdir dir="${build.ddl}"/>
+        <foreach list="${databases}" delimiter="," trim="true" param="db" target="export" inheritAll="yes"/>
+    </target>
+
+    <target name="export">
+        <schemaexport properties="${src.databases}/${db}.properties" quiet="yes" text="yes" delimiter=";" output="${build.ddl}/${db}.sql">
+            <fileset dir="${build.classes}"><include name="**/*.hbm.xml"/><exclude name="**/HMessageExchangeProperty.hbm.xml"/></fileset>
+        </schemaexport>
+    </target>
 </project>