summaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
authorlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-07-02 15:15:14 +0000
committerlresende <lresende@13f79535-47bb-0310-9956-ffa450edef68>2009-07-02 15:15:14 +0000
commit99fe502007e6118444072fab9686d9bbff4743e9 (patch)
tree50ff2fa535962725008acfb244fb6746f379a9e2 /java
parent480b2c67d03e5fd952fc5cfe306ab865b1a4f154 (diff)
Updating bpel to create WSDL/XSD conforming response
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@790620 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
-rw-r--r--java/sca/itest/bpel/helloworld/src/test/resources/helloworld/helloworld.bpel6
1 files changed, 3 insertions, 3 deletions
diff --git a/java/sca/itest/bpel/helloworld/src/test/resources/helloworld/helloworld.bpel b/java/sca/itest/bpel/helloworld/src/test/resources/helloworld/helloworld.bpel
index 4f689afd89..25873e3dc3 100644
--- a/java/sca/itest/bpel/helloworld/src/test/resources/helloworld/helloworld.bpel
+++ b/java/sca/itest/bpel/helloworld/src/test/resources/helloworld/helloworld.bpel
@@ -50,12 +50,12 @@
<assign name="assign1">
<copy>
- <from variable="helloMessage" part="TestPart"/>
+ <from>concat($helloMessage.TestPart/test:message/text(), ' World')</from>
<to variable="tmpVar"/>
</copy>
<copy>
- <from>concat($tmpVar,' World')</from>
- <to variable="helloMessageResponse" part="TestResponse"/>
+ <from>$tmpVar</from>
+ <to>$helloMessageResponse.TestResponse/test:messageResponse</to>
</copy>
</assign>
<reply name="end"