summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--java/sca/itest/bpel/helloworld/src/test/resources/helloworld/helloworld.bpel13
1 files changed, 12 insertions, 1 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 25873e3dc3..156e32e9ee 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
@@ -53,8 +53,19 @@
<from>concat($helloMessage.TestPart/test:message/text(), ' World')</from>
<to variable="tmpVar"/>
</copy>
+ <!-- Initialize the response -->
<copy>
- <from>$tmpVar</from>
+ <from>
+ <literal>
+ <test:helloResponse>
+ <test:messageResponse>Dummy</test:messageResponse>
+ </test:helloResponse>
+ </literal>
+ </from>
+ <to variable="helloMessageResponse" part="TestResponse"/>
+ </copy>
+ <copy>
+ <from variable="tmpVar"/>
<to>$helloMessageResponse.TestResponse/test:messageResponse</to>
</copy>
</assign>