diff options
author | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-07-03 14:00:29 +0000 |
---|---|---|
committer | slaws <slaws@13f79535-47bb-0310-9956-ffa450edef68> | 2009-07-03 14:00:29 +0000 |
commit | f64761fcf0c0fa0d5450ea4074329cd0887cae55 (patch) | |
tree | 70f663fd1b8fadf6fbbe1df116b4a5162aac00e6 /branches | |
parent | d6e17250c6693b09706874444c4d446d92a8ec1a (diff) |
A message to prove that the JMS message reaches the server
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@790919 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'branches')
-rw-r--r-- | branches/sca-java-1.x/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/branches/sca-java-1.x/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java b/branches/sca-java-1.x/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java index 4cdcc1fd0b..a81a0d79ac 100644 --- a/branches/sca-java-1.x/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java +++ b/branches/sca-java-1.x/samples/helloworld-service-jms/src/main/java/helloworld/HelloWorldImpl.java @@ -27,6 +27,7 @@ import org.osoa.sca.annotations.Service; public class HelloWorldImpl implements HelloWorldService {
public String getGreetings(String name) {
+ System.out.println("Got greeting " + name + " at server");
return "Hello " + name;
}
|