summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.bpel3
1 files changed, 2 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.bpel b/sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.bpel
index 112b730cd5..d58768adfa 100644
--- a/sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.bpel
+++ b/sca-java-2.x/trunk/samples/helloworld-bpel/src/main/resources/helloworld.bpel
@@ -51,7 +51,8 @@
<assign name="assign1">
<copy>
<!-- from>concat($helloMessage.TestPart/test:message/text(), ' World')</from -->
- <from>concat('Hello ', 'world')</from>
+ <from>concat($helloMessage.TestPart/test:arg0/text(), ' World')</from>
+ <!-- from>concat('Hello ', 'world')</from -->
<to variable="tmpVar"/>
</copy>
<!-- Initialize the response -->