Author: dkulp
Date: Wed Mar 5 09:18:22 2008
New Revision: 633936
URL: http://svn.apache.org/viewvc?rev=633936&view=rev
Log:
Merged revisions 633524 via svnmerge from
https://svn.apache.org/repos/asf/incubator/cxf/trunk
........
r633524 | seanoc | 2008-03-04 10:58:19 -0500 (Tue, 04 Mar 2008) | 3 lines
Minor updates:
Updated README.txt to indicate how to run Client.java
Updated client so outputs relevant user specific info
........
Modified:
incubator/cxf/branches/2.0.x-fixes/ (props changed)
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/java_first_pojo/src/demo/hw/client/Client.java
Propchange: incubator/cxf/branches/2.0.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.
Modified:
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/java_first_pojo/src/demo/hw/client/Client.java
URL:
http://svn.apache.org/viewvc/incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/java_first_pojo/src/demo/hw/client/Client.java?rev=633936&r1=633935&r2=633936&view=diff
==============================================================================
---
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/java_first_pojo/src/demo/hw/client/Client.java
(original)
+++
incubator/cxf/branches/2.0.x-fixes/distribution/src/main/release/samples/java_first_pojo/src/demo/hw/client/Client.java
Wed Mar 5 09:18:22 2008
@@ -39,7 +39,7 @@
//factory.getServiceFactory().setDataBinding(new AegisDatabinding());
HelloWorld client = (HelloWorld)factory.create();
System.out.println("Invoke sayHi()....");
- System.out.println(client.sayHi("user"));
+ System.out.println(client.sayHi(System.getProperty("user.name")));
System.exit(0);
}