summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-02-10 10:08:48 +0000
committerslaws <slaws@13f79535-47bb-0310-9956-ffa450edef68>2010-02-10 10:08:48 +0000
commitb64dbf103fae7b9adc24c56a6ae426b07bc2e673 (patch)
tree6d7b3df26e1bae7d4f662ef96a91f17b8fe6b84f
parentcd56dabae8c2297c3f71c1dfa5ef406e60c6c406 (diff)
Output something so that you can see that the target service has received a message
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@908431 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/java/itest/nodes/HelloworldImpl.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/java/itest/nodes/HelloworldImpl.java b/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/java/itest/nodes/HelloworldImpl.java
index 81f7e1747d..a27e752fd7 100644
--- a/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/java/itest/nodes/HelloworldImpl.java
+++ b/sca-java-2.x/trunk/itest/nodes/helloworld-service/src/main/java/itest/nodes/HelloworldImpl.java
@@ -22,7 +22,9 @@ package itest.nodes;
public class HelloworldImpl implements Helloworld {
public String sayHello(String name) {
- return "Hello " + name;
+ String response = "Hello " + name;
+ System.out.println("At service - " + response);
+ return response;
}
}