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 2010/05/27 17:52:38 UTC

svn commit: r948869 [13/20] - in /ode/trunk: ./ agents/src/main/java/org/apache/ode/agents/memory/ axis2-war/ axis2-war/src/main/assembly/ axis2-war/src/main/webapp/WEB-INF/conf/ axis2-war/src/main/webapp/js/ axis2-war/src/test/java/org/apache/ode/axis...

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestCorrelationMultiNegative/testCorrelation.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestCorrelationMultiNegative/testCorrelation.bpel?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestCorrelationMultiNegative/testCorrelation.bpel (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestCorrelationMultiNegative/testCorrelation.bpel Thu May 27 15:52:24 2010
@@ -1,20 +1,20 @@
 <!--
-	~ 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.
 -->
 
 <process xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
@@ -27,61 +27,61 @@
  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="testCorrelation.wsdl"
-		namespace="http://ode/bpel/unit-test/testCorrelation.wsdl"
-		importType="http://schemas.xmlsoap.org/wsdl/" />
-	
-	<!-- test correlated receive -->
-	<partnerLinks>
-		<partnerLink name="request" partnerLinkType="wns:testCorrelationRequest" myRole="testCorrelationService"/>
-	</partnerLinks>
-	<variables>
-		<variable name="request" messageType="wns:requestMessage"/>
-		<variable name="reply" messageType="wns:replyMessage"/>
-	</variables>
-	<correlationSets>
-		<correlationSet name="testCorr1" properties="wns:testCorrelationID1"/>
-		<correlationSet name="testCorr2" properties="wns:testCorrelationID2"/>
-		<correlationSet name="testCorr3" properties="wns:testCorrelationID3"/>
-	</correlationSets>
-	<sequence>
-		<receive name="receive1" partnerLink="request" portType="wns:testCorrelationPT" operation="request" variable="request" createInstance="yes">
-			<correlations>
-				<correlation set="testCorr1" initiate="yes"/>
-				<correlation set="testCorr2" initiate="yes"/>
-			</correlations>
-		</receive>
-		<!-- Copy input variables to internal accumulators -->
-		<assign name="assign1">
-			<copy>
-				<from variable="request" property="wns:testCorrelationID1"/>
-				<to variable="reply" part="replyID"/>
-			</copy>
-			<copy>
-				<from>
-					$request.requestMessageData/requestText
-				</from>
-				<to variable="reply" part="replyText"/>
-			</copy>
-		</assign>
+    
+    <import location="testCorrelation.wsdl"
+        namespace="http://ode/bpel/unit-test/testCorrelation.wsdl"
+        importType="http://schemas.xmlsoap.org/wsdl/" />
+    
+    <!-- test correlated receive -->
+    <partnerLinks>
+        <partnerLink name="request" partnerLinkType="wns:testCorrelationRequest" myRole="testCorrelationService"/>
+    </partnerLinks>
+    <variables>
+        <variable name="request" messageType="wns:requestMessage"/>
+        <variable name="reply" messageType="wns:replyMessage"/>
+    </variables>
+    <correlationSets>
+        <correlationSet name="testCorr1" properties="wns:testCorrelationID1"/>
+        <correlationSet name="testCorr2" properties="wns:testCorrelationID2"/>
+        <correlationSet name="testCorr3" properties="wns:testCorrelationID3"/>
+    </correlationSets>
+    <sequence>
+        <receive name="receive1" partnerLink="request" portType="wns:testCorrelationPT" operation="request" variable="request" createInstance="yes">
+            <correlations>
+                <correlation set="testCorr1" initiate="yes"/>
+                <correlation set="testCorr2" initiate="yes"/>
+            </correlations>
+        </receive>
+        <!-- Copy input variables to internal accumulators -->
+        <assign name="assign1">
+            <copy>
+                <from variable="request" property="wns:testCorrelationID1"/>
+                <to variable="reply" part="replyID"/>
+            </copy>
+            <copy>
+                <from>
+                    $request.requestMessageData/requestText
+                </from>
+                <to variable="reply" part="replyText"/>
+            </copy>
+        </assign>
 
-		<receive name="receive2" partnerLink="request" portType="wns:testCorrelationPT" operation="continue" variable="request">
-			<correlations>
-				<correlation set="testCorr1" initiate="no"/>
-				<correlation set="testCorr2" initiate="no"/>
-				<correlation set="testCorr3" initiate="yes"/>
-			</correlations>
-		</receive>
-		<assign>
-			<copy>
-				<from>
-					concat($reply.replyText, $request.requestMessageData/requestText)
-				</from>
-				<to variable="reply" part="replyText"/>
-			</copy>
-		</assign>
+        <receive name="receive2" partnerLink="request" portType="wns:testCorrelationPT" operation="continue" variable="request">
+            <correlations>
+                <correlation set="testCorr1" initiate="no"/>
+                <correlation set="testCorr2" initiate="no"/>
+                <correlation set="testCorr3" initiate="yes"/>
+            </correlations>
+        </receive>
+        <assign>
+            <copy>
+                <from>
+                    concat($reply.replyText, $request.requestMessageData/requestText)
+                </from>
+                <to variable="reply" part="replyText"/>
+            </copy>
+        </assign>
 
-		<reply name="reply" partnerLink="request" portType="wns:testCorrelationPT" operation="request" variable="reply"> </reply>
-	</sequence>
+        <reply name="reply" partnerLink="request" portType="wns:testCorrelationPT" operation="request" variable="reply"> </reply>
+    </sequence>
 </process>

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestCorrelationOpaque/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestCorrelationOpaque/deploy.xml?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestCorrelationOpaque/deploy.xml (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestCorrelationOpaque/deploy.xml Thu May 27 15:52:24 2010
@@ -1,34 +1,34 @@
 <!--
-	~ 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.
 -->
 
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-	xmlns:pns="http://ode/bpel/unit-test/testCorrelationOpaque" 
-	xmlns:wns="http://ode/bpel/unit-test/testCorrelationOpaque.wsdl">
+    xmlns:pns="http://ode/bpel/unit-test/testCorrelationOpaque" 
+    xmlns:wns="http://ode/bpel/unit-test/testCorrelationOpaque.wsdl">
 
 
-	<process name="pns:TestCorrelationOpaque">
-		<active>true</active>
-		<provide partnerLink="testCorrelationOpaquePL1">
-			<service name="wns:testCorrelationOpaqueService" port="wns:testCorrelationOpaquePort"/>
-		</provide>
-		<provide partnerLink="testCorrelationOpaquePL2">
-			<service name="wns:testCorrelationOpaqueService" port="wns:testCorrelationOpaquePort"/>
-		</provide>
-	</process>
+    <process name="pns:TestCorrelationOpaque">
+        <active>true</active>
+        <provide partnerLink="testCorrelationOpaquePL1">
+            <service name="wns:testCorrelationOpaqueService" port="wns:testCorrelationOpaquePort"/>
+        </provide>
+        <provide partnerLink="testCorrelationOpaquePL2">
+            <service name="wns:testCorrelationOpaqueService" port="wns:testCorrelationOpaquePort"/>
+        </provide>
+    </process>
 </deploy>

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDuration/duration.xsd
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDuration/duration.xsd?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDuration/duration.xsd (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDuration/duration.xsd Thu May 27 15:52:24 2010
@@ -21,8 +21,8 @@
         xmlns:tns="http://www.example.org/duration" elementFormDefault="qualified">
 
     <complexType name="Complext">
-    	<sequence>
-    		<element name="duration" type="duration"></element>
-    	</sequence>
+        <sequence>
+            <element name="duration" type="duration"></element>
+        </sequence>
     </complexType>
 </schema>
\ No newline at end of file

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/TestDynamicPick.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/TestDynamicPick.bpel?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/TestDynamicPick.bpel (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/TestDynamicPick.bpel Thu May 27 15:52:24 2010
@@ -18,121 +18,121 @@
   -->
 <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"
-	targetNamespace="http://ode/bpel/unit-test/TestDynamicPick"
-	xmlns:tns="http://ode/bpel/unit-test/TestDynamicPick"
-	xmlns:wns="http://ode/bpel/unit-test/TestDynamicPick.wsdl"
-	xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
-	xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-	name="TestDynamicPick"
-	queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-	expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-	suppressJoinFailure="yes">
-	
-	<!-- test pick with blocking dynamic key -->
-	
-	<import location="TestDynamicPick.wsdl"
-		namespace="http://ode/bpel/unit-test/TestDynamicPick.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/"/>
-	
-	
-	<partnerLinks>
-		<partnerLink name="request" partnerLinkType="wns:TestDynamicPickRequest" myRole="TestDynamicPickService"/>
-		<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 wns:testProbeKey1"/>
-		<correlationSet name="testCorr2" properties="wns:testProbeID wns:testProbeKey2"/>
-	</correlationSets>
-	<sequence>
-		<receive name="receive1" partnerLink="request" portType="wns:TestDynamicPickPT" operation="request" variable="request" createInstance="yes">
-			<correlations>
-				<correlation set="testCorr1" initiate="yes"/>
-				<correlation set="testCorr2" initiate="yes"/>
-			</correlations>
-		</receive>
-		<assign name="assign1">
-			<copy>
-				<from variable="request" property="wns:testProbeID"/>
-				<to variable="probeInput" part="probeName"/>
-			</copy>
-			<copy>
-				<from variable="request" property="wns:testProbeData"/>
-				<to variable="probeInput" part="probeData"/>
-			</copy>
-		</assign>
-		<assign>
-			<copy>
-				<from>
-					<literal><![CDATA[loop on pick until message includes requestEnd = yes]]></literal>
-				</from>
-				<to variable="probeInput" part="probeName"/>
-			</copy>
-		</assign>
-		<invoke name="probe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"> </invoke>
-		<while>
-			<condition>$request.requestMessageData/requestEnd = 'no'</condition>
-			<pick name="testPick">
-				<onMessage partnerLink="request" portType="wns:TestDynamicPickPT" 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>
-					</sequence>
-				</onMessage>
-				<onMessage partnerLink="request" portType="wns:TestDynamicPickPT" operation="continue2" variable="request">
-					<correlations>
-						<correlation set="testCorr2"/>
-					</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>
-					</sequence>
-				</onMessage>
-			</pick>
-		</while>
-		<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="request" portType="wns:TestDynamicPickPT" operation="request" variable="reply"> </reply>
-	</sequence>
+    targetNamespace="http://ode/bpel/unit-test/TestDynamicPick"
+    xmlns:tns="http://ode/bpel/unit-test/TestDynamicPick"
+    xmlns:wns="http://ode/bpel/unit-test/TestDynamicPick.wsdl"
+    xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
+    xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
+    name="TestDynamicPick"
+    queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+    expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+    suppressJoinFailure="yes">
+    
+    <!-- test pick with blocking dynamic key -->
+    
+    <import location="TestDynamicPick.wsdl"
+        namespace="http://ode/bpel/unit-test/TestDynamicPick.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/"/>
+    
+    
+    <partnerLinks>
+        <partnerLink name="request" partnerLinkType="wns:TestDynamicPickRequest" myRole="TestDynamicPickService"/>
+        <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 wns:testProbeKey1"/>
+        <correlationSet name="testCorr2" properties="wns:testProbeID wns:testProbeKey2"/>
+    </correlationSets>
+    <sequence>
+        <receive name="receive1" partnerLink="request" portType="wns:TestDynamicPickPT" operation="request" variable="request" createInstance="yes">
+            <correlations>
+                <correlation set="testCorr1" initiate="yes"/>
+                <correlation set="testCorr2" initiate="yes"/>
+            </correlations>
+        </receive>
+        <assign name="assign1">
+            <copy>
+                <from variable="request" property="wns:testProbeID"/>
+                <to variable="probeInput" part="probeName"/>
+            </copy>
+            <copy>
+                <from variable="request" property="wns:testProbeData"/>
+                <to variable="probeInput" part="probeData"/>
+            </copy>
+        </assign>
+        <assign>
+            <copy>
+                <from>
+                    <literal><![CDATA[loop on pick until message includes requestEnd = yes]]></literal>
+                </from>
+                <to variable="probeInput" part="probeName"/>
+            </copy>
+        </assign>
+        <invoke name="probe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"> </invoke>
+        <while>
+            <condition>$request.requestMessageData/requestEnd = 'no'</condition>
+            <pick name="testPick">
+                <onMessage partnerLink="request" portType="wns:TestDynamicPickPT" 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>
+                    </sequence>
+                </onMessage>
+                <onMessage partnerLink="request" portType="wns:TestDynamicPickPT" operation="continue2" variable="request">
+                    <correlations>
+                        <correlation set="testCorr2"/>
+                    </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>
+                    </sequence>
+                </onMessage>
+            </pick>
+        </while>
+        <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="request" portType="wns:TestDynamicPickPT" operation="request" variable="reply"> </reply>
+    </sequence>
 </process>

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/TestDynamicPick.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/TestDynamicPick.wsdl?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/TestDynamicPick.wsdl (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/TestDynamicPick.wsdl Thu May 27 15:52:24 2010
@@ -89,7 +89,7 @@
    </plnk:partnerLinkType>
 
    <plnk:partnerLinkType name="probeRequest">
-	<plnk:role name="probeService" portType="prb:probeMessagePT"/>
+    <plnk:role name="probeService" portType="prb:probeMessagePT"/>
    </plnk:partnerLinkType>
    
   <prop:property name="testProbeKey1" type="xsd:string"/>

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/deploy.xml?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/deploy.xml (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestDynamicPick/deploy.xml Thu May 27 15:52:24 2010
@@ -1,35 +1,35 @@
 <!--
-	~ 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.
 -->
 
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-	xmlns:pns="http://ode/bpel/unit-test/TestDynamicPick" 
+    xmlns:pns="http://ode/bpel/unit-test/TestDynamicPick" 
     xmlns:prns="http://ode/bpel/unit-test/ProbeService.wsdl"
-	xmlns:wns="http://ode/bpel/unit-test/TestDynamicPick.wsdl">
+    xmlns:wns="http://ode/bpel/unit-test/TestDynamicPick.wsdl">
 
 
-	<process name="pns:TestDynamicPick">
-		<active>true</active>
-		<provide partnerLink="request">
-			<service name="wns:TestDynamicPickService" port="wns:TestDynamicPickPort"/>
-		</provide>
+    <process name="pns:TestDynamicPick">
+        <active>true</active>
+        <provide partnerLink="request">
+            <service name="wns:TestDynamicPickService" port="wns:TestDynamicPickPort"/>
+        </provide>
         <invoke partnerLink="probe">
             <service name="prns:testCorrelationService" port="prns:testCorrelationPort"/>
         </invoke>
-	</process>
+    </process>
 </deploy>

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestExpandTemplate/TestExpandTemplate.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestExpandTemplate/TestExpandTemplate.wsdl?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestExpandTemplate/TestExpandTemplate.wsdl (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestExpandTemplate/TestExpandTemplate.wsdl Thu May 27 15:52:24 2010
@@ -71,9 +71,9 @@
         </wsdl:operation>
     </wsdl:binding>
     <wsdl:service name="TestExpandTemplateService">
-		<wsdl:port name="TestExpandTemplatePort" binding="tns:TestExpandTemplateSoapBinding">
-     		<soap:address location="http://localhost:8080/ode/processes/testExpandTemplate"/>
-		</wsdl:port>
+        <wsdl:port name="TestExpandTemplatePort" binding="tns:TestExpandTemplateSoapBinding">
+            <soap:address location="http://localhost:8080/ode/processes/testExpandTemplate"/>
+        </wsdl:port>
     </wsdl:service>
     
    <plnk:partnerLinkType name="TestExpandTemplatePartnerLinkType">

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestExpandTemplate/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestExpandTemplate/deploy.xml?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestExpandTemplate/deploy.xml (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestExpandTemplate/deploy.xml Thu May 27 15:52:24 2010
@@ -17,14 +17,14 @@
   ~ 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">
+    xmlns:pns="http://ode/bpel/unit-test" 
+    xmlns:wns="http://ode/bpel/unit-test.wsdl">
 
 
-	<process name="pns:TestExpandTemplate">
-		<active>true</active>
-		<provide partnerLink="testExpandTemplatePartnerLink">
-			<service name="wns:TestExpandTemplateService" port="TestExpandTemplatePort"/>
-		</provide>
-	</process>
+    <process name="pns:TestExpandTemplate">
+        <active>true</active>
+        <provide partnerLink="testExpandTemplatePartnerLink">
+            <service name="wns:TestExpandTemplateService" port="TestExpandTemplatePort"/>
+        </provide>
+    </process>
 </deploy>

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultHandlers/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultHandlers/deploy.xml?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultHandlers/deploy.xml (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultHandlers/deploy.xml Thu May 27 15:52:24 2010
@@ -1,34 +1,34 @@
 <!--
-	~ 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.
 -->
 
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-	xmlns:pns="http://ode/bpel/unit-test/testFaultHandlers" 
-	xmlns:wns="http://ode/bpel/unit-test/testFaultHandlers.wsdl">
+    xmlns:pns="http://ode/bpel/unit-test/testFaultHandlers" 
+    xmlns:wns="http://ode/bpel/unit-test/testFaultHandlers.wsdl">
 
 
-	<process name="pns:TestFaultHandlersProcess">
-		<active>true</active>
-		<provide partnerLink="request">
-			<service name="wns:testFaultHandlersService" port="wns:testFaultHandlersPort"/>
-		</provide>
-		<invoke partnerLink="probe">
-			<service name="ignore" port="ignore"/>
-		</invoke>
-	</process>
+    <process name="pns:TestFaultHandlersProcess">
+        <active>true</active>
+        <provide partnerLink="request">
+            <service name="wns:testFaultHandlersService" port="wns:testFaultHandlersPort"/>
+        </provide>
+        <invoke partnerLink="probe">
+            <service name="ignore" port="ignore"/>
+        </invoke>
+    </process>
 </deploy>

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultHandlers/testFaultHandlers.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultHandlers/testFaultHandlers.bpel?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultHandlers/testFaultHandlers.bpel (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultHandlers/testFaultHandlers.bpel Thu May 27 15:52:24 2010
@@ -1,40 +1,40 @@
 <!--
-	~ 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.
 -->
 
 <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/testFaultHandlers"
-	xmlns:wns="http://ode/bpel/unit-test/testFaultHandlers.wsdl"
-	xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
+    xmlns:tns="http://ode/bpel/unit-test/testFaultHandlers"
+    xmlns:wns="http://ode/bpel/unit-test/testFaultHandlers.wsdl"
+    xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
  xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
  name="TestFaultHandlersProcess"
-	targetNamespace="http://ode/bpel/unit-test/testFaultHandlers"
-	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/testFaultHandlers"
+    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="testFaultHandlers.wsdl"
-		namespace="http://ode/bpel/unit-test/testFaultHandlers.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/"/>
+    <import location="testFaultHandlers.wsdl"
+        namespace="http://ode/bpel/unit-test/testFaultHandlers.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 fault handlers	-->
 <!--	throw 					-->
@@ -42,8 +42,8 @@
 <!--	catchAll 				-->
 
   <partnerLinks>
-  	<partnerLink name="request" partnerLinkType="wns:testFaultHandlersRequest" myRole="testFaultHandlersService"/>
-  	<partnerLink name="probe" partnerLinkType="wns:probeRequest" partnerRole="probeService" initializePartnerRole="yes"/>
+    <partnerLink name="request" partnerLinkType="wns:testFaultHandlersRequest" myRole="testFaultHandlersService"/>
+    <partnerLink name="probe" partnerLinkType="wns:probeRequest" partnerRole="probeService" initializePartnerRole="yes"/>
   </partnerLinks>
 
   <variables>
@@ -56,104 +56,104 @@
   </variables>
 
   <faultHandlers>
-	<catchAll>
-	   <sequence>
-	   	  	<assign>
-	      		<copy>
-	      			<from>
-	      				<literal><![CDATA[caught fault with catchAll]]></literal>
-	      			</from>
-	        		<to variable="probeInput" part="probeName"/>
-	      		</copy>
-	  		</assign> 
-	    	<invoke name="allFaultProbe" partnerLink="probe" 
-	            	portType="prb:probeMessagePT" 
-	            	operation="probe"
-	            	inputVariable="probeInput"  
-	            	outputVariable="probeInput">
-	    	</invoke>
-
-	  	<!-- copy internal accumulators to the reply message -->
-
-	  	<assign name="allFaultAssign">
-	      	<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="allFaultReply" partnerLink="request" portType="wns:testFaultHandlersPT" 
-	           operation="request" variable="reply"> 
-	  	</reply>
-	   </sequence>
-	</catchAll>
+    <catchAll>
+       <sequence>
+            <assign>
+                <copy>
+                    <from>
+                        <literal><![CDATA[caught fault with catchAll]]></literal>
+                    </from>
+                    <to variable="probeInput" part="probeName"/>
+                </copy>
+            </assign> 
+            <invoke name="allFaultProbe" partnerLink="probe" 
+                    portType="prb:probeMessagePT" 
+                    operation="probe"
+                    inputVariable="probeInput"  
+                    outputVariable="probeInput">
+            </invoke>
+
+        <!-- copy internal accumulators to the reply message -->
+
+        <assign name="allFaultAssign">
+            <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="allFaultReply" partnerLink="request" portType="wns:testFaultHandlersPT" 
+               operation="request" variable="reply"> 
+        </reply>
+       </sequence>
+    </catchAll>
   </faultHandlers>
 
   <sequence>
-	    
-	    <receive name="receive1" partnerLink="request"
-	    	portType="wns:testFaultHandlersPT" 
-	             operation="request" variable="request"
-	             createInstance="yes">
-	    </receive>
-	
-		<!-- 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>   
-	
-	  <scope name="scopeOne">
-  		<faultHandlers>
-			<catch faultName="tns:testFault">
-	   			<sequence>
-	   			
-	   				  <assign>
-	      				<copy>
-	      					<from>
-	      						<literal><![CDATA[caught testFault]]></literal>
-	      					</from>
-	        				<to variable="probeInput" part="probeName"/>
-	      				</copy>
-	  				  </assign> 
-	    				<invoke name="testFaultProbe" partnerLink="probe" 
-	            			portType="prb:probeMessagePT" 
-	            			operation="probe"
-	            			inputVariable="probeInput"  
-	            			outputVariable="probeInput">
-	    				</invoke>
-
-	  				<!-- copy internal accumulators to the reply message -->
-
-	  				<assign name="testFaultAssign">
-	      				<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> 
-	    
-	   			</sequence>
-			</catch>
-		</faultHandlers>
-
-	  <if>
-		<!-- throws a named fault -->
-		<condition>$request.faultIndicator1 = 'yes'</condition>
+        
+        <receive name="receive1" partnerLink="request"
+            portType="wns:testFaultHandlersPT" 
+                 operation="request" variable="request"
+                 createInstance="yes">
+        </receive>
+    
+        <!-- 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>   
+    
+      <scope name="scopeOne">
+        <faultHandlers>
+            <catch faultName="tns:testFault">
+                <sequence>
+                
+                      <assign>
+                        <copy>
+                            <from>
+                                <literal><![CDATA[caught testFault]]></literal>
+                            </from>
+                            <to variable="probeInput" part="probeName"/>
+                        </copy>
+                      </assign> 
+                        <invoke name="testFaultProbe" partnerLink="probe" 
+                            portType="prb:probeMessagePT" 
+                            operation="probe"
+                            inputVariable="probeInput"  
+                            outputVariable="probeInput">
+                        </invoke>
+
+                    <!-- copy internal accumulators to the reply message -->
+
+                    <assign name="testFaultAssign">
+                        <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> 
+        
+                </sequence>
+            </catch>
+        </faultHandlers>
+
+      <if>
+        <!-- throws a named fault -->
+        <condition>$request.faultIndicator1 = 'yes'</condition>
         <sequence>
             <assign>
                     <copy>
@@ -171,63 +171,63 @@
             </invoke>
             <throw faultName="tns:testFault"/>
         </sequence>
-		<!-- throws an unknown fault -->
-		<elseif>
-			<condition>$request.faultIndicator2 = 'yes'</condition>
-			<sequence>
-				<assign>
-					<copy>
-						<from>
-							<literal><![CDATA[throw unknown fault]]></literal>
-						</from>
-						<to variable="probeInput" part="probeName"/>
-					</copy>
-				</assign> 
-				<invoke name="probe1" partnerLink="probe" 
-					portType="prb:probeMessagePT" 
-					operation="probe"
-					inputVariable="probeInput"  
-					outputVariable="probeInput">
-				</invoke>
-				
-				<throw faultName="tns:unknownFault"/>
-			</sequence>
-		</elseif>
-	  </if>
-	  </scope>
-
-	  			<assign>
-	      				<copy>
-	      					<from>
-	      						<literal><![CDATA[process complete]]></literal>
-	      					</from>
-	        				<to variable="probeInput" part="probeName"/>
-	      				</copy>
-	  			</assign> 
+        <!-- throws an unknown fault -->
+        <elseif>
+            <condition>$request.faultIndicator2 = 'yes'</condition>
+            <sequence>
+                <assign>
+                    <copy>
+                        <from>
+                            <literal><![CDATA[throw unknown fault]]></literal>
+                        </from>
+                        <to variable="probeInput" part="probeName"/>
+                    </copy>
+                </assign> 
+                <invoke name="probe1" partnerLink="probe" 
+                    portType="prb:probeMessagePT" 
+                    operation="probe"
+                    inputVariable="probeInput"  
+                    outputVariable="probeInput">
+                </invoke>
+                
+                <throw faultName="tns:unknownFault"/>
+            </sequence>
+        </elseif>
+      </if>
+      </scope>
+
+                <assign>
+                        <copy>
+                            <from>
+                                <literal><![CDATA[process complete]]></literal>
+                            </from>
+                            <to variable="probeInput" part="probeName"/>
+                        </copy>
+                </assign> 
 
        <invoke name="probe2" partnerLink="probe"
-	            portType="prb:probeMessagePT" 
-	            operation="probe"
-	            inputVariable="probeInput"  
-	            outputVariable="probeInput">
+                portType="prb:probeMessagePT" 
+                operation="probe"
+                inputVariable="probeInput"  
+                outputVariable="probeInput">
        </invoke>
 
-	  <!-- copy internal accumulators to the reply message -->
+      <!-- copy internal accumulators to the reply message -->
 
-	  <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="request" portType="wns:testFaultHandlersPT" 
-	           operation="request" variable="reply"> 
-	  </reply>
+      <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="request" portType="wns:testFaultHandlersPT" 
+               operation="request" variable="reply"> 
+      </reply>
 
   
   </sequence>

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/TestFaultWithVariable.bpel
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/TestFaultWithVariable.bpel?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/TestFaultWithVariable.bpel (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/TestFaultWithVariable.bpel Thu May 27 15:52:24 2010
@@ -1,189 +1,189 @@
 
 <!--
-	~ 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.
 -->
 
 <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/TestFaultWithVariable"
-	targetNamespace="http://ode/bpel/unit-test/TestFaultWithVariable"
+    targetNamespace="http://ode/bpel/unit-test/TestFaultWithVariable"
  xmlns:wns="http://ode/bpel/unit-test/TestFaultWithVariable.wsdl"
-	xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
-	xmlns:flt="http://ode/bpel/unit-test/FaultService.wsdl"
-	xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
-	name="TestFaultWithVariable"
-	queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-	expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
-	suppressJoinFailure="yes">
-	
-	<!-- Unit test external fault handlers with variable input -->
-	<!--	throw 					-->
-	<!--	catch 					-->
+    xmlns:prb="http://ode/bpel/unit-test/ProbeService.wsdl"
+    xmlns:flt="http://ode/bpel/unit-test/FaultService.wsdl"
+    xmlns="http://docs.oasis-open.org/wsbpel/2.0/process/executable"
+    name="TestFaultWithVariable"
+    queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+    expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
+    suppressJoinFailure="yes">
+    
+    <!-- Unit test external fault handlers with variable input -->
+    <!--	throw 					-->
+    <!--	catch 					-->
 
-	<import location="TestFaultWithVariable.wsdl"
-		namespace="http://ode/bpel/unit-test/TestFaultWithVariable.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/"/>
-	<import location="../FaultService/faultService.wsdl"
-		namespace="http://ode/bpel/unit-test/FaultService.wsdl"
-		importType="http://schemas.xmlsoap.org/wsdl/"/>
-	
+    <import location="TestFaultWithVariable.wsdl"
+        namespace="http://ode/bpel/unit-test/TestFaultWithVariable.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/"/>
+    <import location="../FaultService/faultService.wsdl"
+        namespace="http://ode/bpel/unit-test/FaultService.wsdl"
+        importType="http://schemas.xmlsoap.org/wsdl/"/>
+    
 
-	<partnerLinks>
-		<partnerLink name="request" partnerLinkType="wns:TestFaultWithVariableRequest" myRole="TestFaultWithVariableService"/>
-		<partnerLink name="probe" partnerLinkType="wns:probeRequest" partnerRole="probeService" initializePartnerRole="yes"/>
-		<partnerLink name="fault" partnerLinkType="wns:faultRequest" partnerRole="faultService" initializePartnerRole="yes"/>
-	</partnerLinks>
-	<variables>
-		<variable name="request" messageType="wns:requestMessage"/>
-		<variable name="probeInput" messageType="prb:probeMessage"/>
-		<variable name="reply" messageType="wns:replyMessage"/>
-		<variable name="fault" messageType="flt:faultMessage"/>
-		<variable name="faultResponse" messageType="flt:faultMessage"/>
-	</variables>
-	<faultHandlers>
-		<catchAll>
-			<sequence>
-				<assign>
-					<copy>
-						<from>
-							<literal><![CDATA[caught fault with catchAll]]></literal>
-						</from>
-						<to variable="probeInput" part="probeName"/>
-					</copy>
-				</assign>
-				<invoke name="allFaultProbe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
-				<!-- copy internal accumulators to the reply message -->
-				<assign name="allFaultAssign">
-					<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="allFaultReply" partnerLink="request" portType="wns:TestFaultWithVariablePT" operation="request" variable="reply"/>
-			</sequence>
-		</catchAll>
-	</faultHandlers>
-	<sequence>
-		<receive name="receive1" partnerLink="request" portType="wns:TestFaultWithVariablePT" 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>
-		<scope name="scopeOne">
-			<faultHandlers>
-				<catch faultName="flt:FaultMessage1" faultVariable="testError" faultMessageType="flt:errorMessage">
-					<sequence>
-						<assign>
-							<copy>
-								<from>
-									<literal><![CDATA[caught FaultMessage1]]></literal>
-								</from>
-								<to variable="probeInput" part="probeName"/>
-							</copy>
-						</assign>
-						<invoke name="testFaultProbe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
-						<assign>
-							<copy>
-								<from variable="testError" part="errorText"/>
-								<to variable="probeInput" part="probeName"/>
-							</copy>
-						</assign>
-						<invoke name="faultMessageProbe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
-					</sequence>
-				</catch>
-				<catch faultName="flt:FaultMessage2" faultVariable="testError" faultMessageType="flt:errorMessage">
-					<sequence>
-						<assign>
-							<copy>
-								<from>
-									<literal><![CDATA[caught FaultMessage2]]></literal>
-								</from>
-								<to variable="probeInput" part="probeName"/>
-							</copy>
-						</assign>
-						<invoke name="testFaultProbe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
-						<assign>
-							<copy>
-								<from variable="testError" part="errorText"/>
-								<to variable="probeInput" part="probeName"/>
-							</copy>
-						</assign>
-						<invoke name="faultMessageProbe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
-					</sequence>
-				</catch>
-			</faultHandlers>
-			<sequence>
-				<assign>
-					<copy>
-						<from>$request.requestID</from>
-						<to variable="fault" part="faultName"/>
-					</copy>
-					<copy>
-						<from>$request.requestText</from>
-						<to variable="fault" part="faultData"/>
-					</copy>
-					<copy>
-						<from>$request.faultIndicator1</from>
-						<to>$fault.faultIndicator1</to>
-					</copy>
-					<copy>
-						<from>$request.faultIndicator2</from>
-						<to>$fault.faultIndicator2</to>
-					</copy>
-				</assign>
-				<invoke name="throwTestFault" partnerLink="fault" portType="flt:faultMessagePT" operation="throwFault" inputVariable="fault" outputVariable="faultResponse"/>
-			</sequence>
+    <partnerLinks>
+        <partnerLink name="request" partnerLinkType="wns:TestFaultWithVariableRequest" myRole="TestFaultWithVariableService"/>
+        <partnerLink name="probe" partnerLinkType="wns:probeRequest" partnerRole="probeService" initializePartnerRole="yes"/>
+        <partnerLink name="fault" partnerLinkType="wns:faultRequest" partnerRole="faultService" initializePartnerRole="yes"/>
+    </partnerLinks>
+    <variables>
+        <variable name="request" messageType="wns:requestMessage"/>
+        <variable name="probeInput" messageType="prb:probeMessage"/>
+        <variable name="reply" messageType="wns:replyMessage"/>
+        <variable name="fault" messageType="flt:faultMessage"/>
+        <variable name="faultResponse" messageType="flt:faultMessage"/>
+    </variables>
+    <faultHandlers>
+        <catchAll>
+            <sequence>
+                <assign>
+                    <copy>
+                        <from>
+                            <literal><![CDATA[caught fault with catchAll]]></literal>
+                        </from>
+                        <to variable="probeInput" part="probeName"/>
+                    </copy>
+                </assign>
+                <invoke name="allFaultProbe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
+                <!-- copy internal accumulators to the reply message -->
+                <assign name="allFaultAssign">
+                    <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="allFaultReply" partnerLink="request" portType="wns:TestFaultWithVariablePT" operation="request" variable="reply"/>
+            </sequence>
+        </catchAll>
+    </faultHandlers>
+    <sequence>
+        <receive name="receive1" partnerLink="request" portType="wns:TestFaultWithVariablePT" 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>
+        <scope name="scopeOne">
+            <faultHandlers>
+                <catch faultName="flt:FaultMessage1" faultVariable="testError" faultMessageType="flt:errorMessage">
+                    <sequence>
+                        <assign>
+                            <copy>
+                                <from>
+                                    <literal><![CDATA[caught FaultMessage1]]></literal>
+                                </from>
+                                <to variable="probeInput" part="probeName"/>
+                            </copy>
+                        </assign>
+                        <invoke name="testFaultProbe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
+                        <assign>
+                            <copy>
+                                <from variable="testError" part="errorText"/>
+                                <to variable="probeInput" part="probeName"/>
+                            </copy>
+                        </assign>
+                        <invoke name="faultMessageProbe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
+                    </sequence>
+                </catch>
+                <catch faultName="flt:FaultMessage2" faultVariable="testError" faultMessageType="flt:errorMessage">
+                    <sequence>
+                        <assign>
+                            <copy>
+                                <from>
+                                    <literal><![CDATA[caught FaultMessage2]]></literal>
+                                </from>
+                                <to variable="probeInput" part="probeName"/>
+                            </copy>
+                        </assign>
+                        <invoke name="testFaultProbe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
+                        <assign>
+                            <copy>
+                                <from variable="testError" part="errorText"/>
+                                <to variable="probeInput" part="probeName"/>
+                            </copy>
+                        </assign>
+                        <invoke name="faultMessageProbe" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
+                    </sequence>
+                </catch>
+            </faultHandlers>
+            <sequence>
+                <assign>
+                    <copy>
+                        <from>$request.requestID</from>
+                        <to variable="fault" part="faultName"/>
+                    </copy>
+                    <copy>
+                        <from>$request.requestText</from>
+                        <to variable="fault" part="faultData"/>
+                    </copy>
+                    <copy>
+                        <from>$request.faultIndicator1</from>
+                        <to>$fault.faultIndicator1</to>
+                    </copy>
+                    <copy>
+                        <from>$request.faultIndicator2</from>
+                        <to>$fault.faultIndicator2</to>
+                    </copy>
+                </assign>
+                <invoke name="throwTestFault" partnerLink="fault" portType="flt:faultMessagePT" operation="throwFault" inputVariable="fault" outputVariable="faultResponse"/>
+            </sequence>
 
-		</scope>
-		<assign>
-			<copy>
-				<from>
-					<literal><![CDATA[process complete]]></literal>
-				</from>
-				<to variable="probeInput" part="probeName"/>
-			</copy>
-		</assign>
-		<invoke name="probe2" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
-		<!-- copy internal accumulators to the reply message -->
-		<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="request" portType="wns:TestFaultWithVariablePT" operation="request" variable="reply"/>
-	</sequence>
+        </scope>
+        <assign>
+            <copy>
+                <from>
+                    <literal><![CDATA[process complete]]></literal>
+                </from>
+                <to variable="probeInput" part="probeName"/>
+            </copy>
+        </assign>
+        <invoke name="probe2" partnerLink="probe" portType="prb:probeMessagePT" operation="probe" inputVariable="probeInput" outputVariable="probeInput"/>
+        <!-- copy internal accumulators to the reply message -->
+        <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="request" portType="wns:TestFaultWithVariablePT" operation="request" variable="reply"/>
+    </sequence>
 </process>

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/TestFaultWithVariable.wsdl
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/TestFaultWithVariable.wsdl?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/TestFaultWithVariable.wsdl (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/TestFaultWithVariable.wsdl Thu May 27 15:52:24 2010
@@ -1,65 +1,65 @@
 <!--
-	~ 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.
 -->
 
 <wsdl:definitions targetNamespace="http://ode/bpel/unit-test/TestFaultWithVariable.wsdl"
-	xmlns:tns="http://ode/bpel/unit-test/TestFaultWithVariable.wsdl"
-	xmlns:typens="http://ode/bpel/unit-test/TestFaultWithVariable.wsdl.types"
-	xmlns="http://ode/bpel/unit-test/TestFaultWithVariable.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:flt="http://ode/bpel/unit-test/FaultService.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:part name="faultIndicator1" type="xsd:string"/>
-		<wsdl:part name="faultIndicator2" 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>
+    xmlns:tns="http://ode/bpel/unit-test/TestFaultWithVariable.wsdl"
+    xmlns:typens="http://ode/bpel/unit-test/TestFaultWithVariable.wsdl.types"
+    xmlns="http://ode/bpel/unit-test/TestFaultWithVariable.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:flt="http://ode/bpel/unit-test/FaultService.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:part name="faultIndicator1" type="xsd:string"/>
+        <wsdl:part name="faultIndicator2" 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="TestFaultWithVariablePT">
-		<wsdl:operation name="request">
-			<wsdl:input message="requestMessage"/>
-			<wsdl:output message="replyMessage"/>
-		</wsdl:operation>
-	</wsdl:portType>
-	<wsdl:binding name="TestFaultWithVariableBinding" type="tns:TestFaultWithVariablePT">
-		<wsdl:operation name="request">
-		</wsdl:operation>
-	</wsdl:binding>
-	<wsdl:service name="TestFaultWithVariableService">
-		<wsdl:port name="TestFaultWithVariablePort" binding="tns:TestFaultWithVariableBinding">
-		</wsdl:port>
-	</wsdl:service>	
-	
-	<plnk:partnerLinkType name="TestFaultWithVariableRequest">
-		<plnk:role name="TestFaultWithVariableService" portType="TestFaultWithVariablePT"/>
-	</plnk:partnerLinkType>
-	<plnk:partnerLinkType name="probeRequest">
-		<plnk:role name="probeService" portType="prb:probeMessagePT"/>
-	</plnk:partnerLinkType>
-	<plnk:partnerLinkType name="faultRequest">
-		<plnk:role name="faultService" portType="flt:faultMessagePT"/>
-	</plnk:partnerLinkType>
+    <wsdl:portType name="TestFaultWithVariablePT">
+        <wsdl:operation name="request">
+            <wsdl:input message="requestMessage"/>
+            <wsdl:output message="replyMessage"/>
+        </wsdl:operation>
+    </wsdl:portType>
+    <wsdl:binding name="TestFaultWithVariableBinding" type="tns:TestFaultWithVariablePT">
+        <wsdl:operation name="request">
+        </wsdl:operation>
+    </wsdl:binding>
+    <wsdl:service name="TestFaultWithVariableService">
+        <wsdl:port name="TestFaultWithVariablePort" binding="tns:TestFaultWithVariableBinding">
+        </wsdl:port>
+    </wsdl:service>	
+    
+    <plnk:partnerLinkType name="TestFaultWithVariableRequest">
+        <plnk:role name="TestFaultWithVariableService" portType="TestFaultWithVariablePT"/>
+    </plnk:partnerLinkType>
+    <plnk:partnerLinkType name="probeRequest">
+        <plnk:role name="probeService" portType="prb:probeMessagePT"/>
+    </plnk:partnerLinkType>
+    <plnk:partnerLinkType name="faultRequest">
+        <plnk:role name="faultService" portType="flt:faultMessagePT"/>
+    </plnk:partnerLinkType>
 </wsdl:definitions>

Modified: ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/deploy.xml
URL: http://svn.apache.org/viewvc/ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/deploy.xml?rev=948869&r1=948868&r2=948869&view=diff
==============================================================================
--- ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/deploy.xml (original)
+++ ode/trunk/bpel-test/src/test/resources/bpel/2.0/TestFaultWithVariable/deploy.xml Thu May 27 15:52:24 2010
@@ -1,37 +1,37 @@
 <!--
-	~ 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.
 -->
 
 <deploy xmlns="http://www.apache.org/ode/schemas/dd/2007/03"
-	xmlns:pns="http://ode/bpel/unit-test/TestFaultWithVariable" 
-	xmlns:wns="http://ode/bpel/unit-test/TestFaultWithVariable.wsdl">
+    xmlns:pns="http://ode/bpel/unit-test/TestFaultWithVariable" 
+    xmlns:wns="http://ode/bpel/unit-test/TestFaultWithVariable.wsdl">
 
 
-	<process name="pns:TestFaultWithVariable">
-		<active>true</active>
-		<provide partnerLink="request">
-			<service name="wns:TestFaultWithVariableService" port="wns:TestFaultWithVariablePort"/>
-		</provide>
-		<invoke partnerLink="probe">
-			<service name="ignore" port="ignore"/>
-		</invoke>
-		<invoke partnerLink="fault">
-			<service name="ignore" port="ignore"/>
-		</invoke>
-	</process>
+    <process name="pns:TestFaultWithVariable">
+        <active>true</active>
+        <provide partnerLink="request">
+            <service name="wns:TestFaultWithVariableService" port="wns:TestFaultWithVariablePort"/>
+        </provide>
+        <invoke partnerLink="probe">
+            <service name="ignore" port="ignore"/>
+        </invoke>
+        <invoke partnerLink="fault">
+            <service name="ignore" port="ignore"/>
+        </invoke>
+    </process>
 </deploy>