summaryrefslogtreecommitdiffstats
path: root/java/sca/itest/bpel/helloworld-reference/src/test/resources/helloworld/helloworld.bpel
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-07-02 15:07:07 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-07-02 15:07:07 +0000
commitd3ac5452398816804b415521d521874fac9ca4f9 (patch)
tree40a98d8950ccdb7e5d542d4d7f47ab23591d25a6 /java/sca/itest/bpel/helloworld-reference/src/test/resources/helloworld/helloworld.bpel
parent6194ba122c243f157ee6657b51e02b967dbd9b1a (diff)
Updating wsdl/bpel files to avoid generating java artifacts utilizing holder pattern
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@790615 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/sca/itest/bpel/helloworld-reference/src/test/resources/helloworld/helloworld.bpel')
-rw-r--r--java/sca/itest/bpel/helloworld-reference/src/test/resources/helloworld/helloworld.bpel8
1 files changed, 4 insertions, 4 deletions
diff --git a/java/sca/itest/bpel/helloworld-reference/src/test/resources/helloworld/helloworld.bpel b/java/sca/itest/bpel/helloworld-reference/src/test/resources/helloworld/helloworld.bpel
index 5ec2cc9f2e..b508f59bcf 100644
--- a/java/sca/itest/bpel/helloworld-reference/src/test/resources/helloworld/helloworld.bpel
+++ b/java/sca/itest/bpel/helloworld-reference/src/test/resources/helloworld/helloworld.bpel
@@ -25,7 +25,7 @@
xmlns:helloworld="http://helloworld"
xmlns:greetings="http://greetings"
queryLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0"
- expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0">
+ expressionLanguage="urn:oasis:names:tc:wsbpel:2.0:sublang:xpath2.0" xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable">
<import location="helloworld.wsdl" importType="http://schemas.xmlsoap.org/wsdl/"
namespace="http://helloworld"/>
@@ -40,7 +40,7 @@
<variables>
<variable name="helloMessage" messageType="helloworld:HelloMessage"/>
- <variable name="helloResponse" messageType="helloworld:HelloMessage"/>
+ <variable name="helloMessageResponse" messageType="helloworld:HelloMessageResponse"/>
<variable name="greetingsRequest" messageType="greetings:getGreetingsRequest"/>
<variable name="greetingsResponse" messageType="greetings:getGreetingsResponse"/>
</variables>
@@ -71,7 +71,7 @@
<assign name="assignToHelloResponse">
<copy>
<from>$greetingsResponse.parameters/greetings:getGreetingsReturn</from>
- <to>$helloResponse.TestPart</to>
+ <to>$helloMessageResponse.TestPart</to>
</copy>
</assign>
@@ -79,6 +79,6 @@
operation="hello"
partnerLink="helloPartnerLink"
portType="helloworld:HelloWorld"
- variable="helloResponse"/>
+ variable="helloMessageResponse"/>
</sequence>
</process>