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-10-15 18:38:02 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-10-15 18:38:02 +0000
commit529acd94adb365c91b88776cffdc858f09e241d4 (patch)
treedd4428704f4bcf2ecbc45eb242a2388b131aaffc /java/sca/itest/bpel/helloworld-reference/src/test/resources/helloworld/helloworld.bpel
parenta5f1f82a1a35d131a48a034cc747dffb1c58a037 (diff)
Minor updates/cleanup to bpel/wsdl file
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@825610 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 b508f59bcf..c0317687df 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
@@ -41,8 +41,8 @@
<variables>
<variable name="helloMessage" messageType="helloworld:HelloMessage"/>
<variable name="helloMessageResponse" messageType="helloworld:HelloMessageResponse"/>
- <variable name="greetingsRequest" messageType="greetings:getGreetingsRequest"/>
- <variable name="greetingsResponse" messageType="greetings:getGreetingsResponse"/>
+ <variable name="greetingsRequest" messageType="greetings:GreetingsRequest"/>
+ <variable name="greetingsResponse" messageType="greetings:GreetingsResponse"/>
</variables>
<sequence>
@@ -57,7 +57,7 @@
<assign name="assignToGreetingsRequest">
<copy>
<from>$helloMessage.TestPart</from>
- <to>$greetingsRequest.parameters</to>
+ <to>$greetingsRequest.request</to>
</copy>
</assign>
@@ -70,7 +70,7 @@
<assign name="assignToHelloResponse">
<copy>
- <from>$greetingsResponse.parameters/greetings:getGreetingsReturn</from>
+ <from>$greetingsResponse.parameters/greetings:GreetingsResponse</from>
<to>$helloMessageResponse.TestPart</to>
</copy>
</assign>