[Smartcc-cvs] smartcc/soap/src/org/jboss/net/sample/hello HelloClient.java,1.1,1.2
Brought to you by:
hengels
|
From: <he...@us...> - 2002-06-18 10:03:41
|
Update of /cvsroot/smartcc/smartcc/soap/src/org/jboss/net/sample/hello
In directory usw-pr-cvs1:/tmp/cvs-serv25453/soap/src/org/jboss/net/sample/hello
Modified Files:
HelloClient.java
Log Message:
o removed debug output
Index: HelloClient.java
===================================================================
RCS file: /cvsroot/smartcc/smartcc/soap/src/org/jboss/net/sample/hello/HelloClient.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** HelloClient.java 18 Jun 2002 09:27:48 -0000 1.1
--- HelloClient.java 18 Jun 2002 10:03:38 -0000 1.2
***************
*** 17,25 ****
throws Exception
{
- System.out.println("HelloClient starting");
Context context = new InitialContext();
HelloHome helloHome = (HelloHome)context.lookup("ejb/Hello");
Hello hello = helloHome.create();
- System.out.println("Hello reference obtained");
String result = hello.hello("everybody");
--- 17,23 ----
|