You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cxf.apache.org by se...@apache.org on 2009/10/12 19:07:33 UTC

svn commit: r824423 - in /cxf/branches/2.2.x-fixes: ./ distribution/src/main/release/samples/wsdl_first/src/main/java/com/example/customerservice/server/CustomerServiceServer.java

Author: sergeyb
Date: Mon Oct 12 17:07:33 2009
New Revision: 824423

URL: http://svn.apache.org/viewvc?rev=824423&view=rev
Log:
Merged revisions 824421 via svnmerge from 
https://svn.apache.org/repos/asf/cxf/trunk

........
  r824421 | sergeyb | 2009-10-12 17:59:08 +0100 (Mon, 12 Oct 2009) | 1 line
  
  Minor update to wsdl_first demo for it to run better in XHarness
........

Modified:
    cxf/branches/2.2.x-fixes/   (props changed)
    cxf/branches/2.2.x-fixes/distribution/src/main/release/samples/wsdl_first/src/main/java/com/example/customerservice/server/CustomerServiceServer.java

Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
--- svn:mergeinfo (original)
+++ svn:mergeinfo Mon Oct 12 17:07:33 2009
@@ -1 +1 @@
-/cxf/trunk:823456,823648,824120
+/cxf/trunk:823456,823648,824120,824421

Propchange: cxf/branches/2.2.x-fixes/
------------------------------------------------------------------------------
Binary property 'svnmerge-integrated' - no diff available.

Modified: cxf/branches/2.2.x-fixes/distribution/src/main/release/samples/wsdl_first/src/main/java/com/example/customerservice/server/CustomerServiceServer.java
URL: http://svn.apache.org/viewvc/cxf/branches/2.2.x-fixes/distribution/src/main/release/samples/wsdl_first/src/main/java/com/example/customerservice/server/CustomerServiceServer.java?rev=824423&r1=824422&r2=824423&view=diff
==============================================================================
--- cxf/branches/2.2.x-fixes/distribution/src/main/release/samples/wsdl_first/src/main/java/com/example/customerservice/server/CustomerServiceServer.java (original)
+++ cxf/branches/2.2.x-fixes/distribution/src/main/release/samples/wsdl_first/src/main/java/com/example/customerservice/server/CustomerServiceServer.java Mon Oct 12 17:07:33 2009
@@ -43,7 +43,7 @@
     public static void main(String args[]) throws Exception {
         new CustomerServiceServer();
         System.out.println("Server ready...");
-        System.in.read();
+        Thread.sleep(5 * 60 * 1000);
         System.out.println("Server exiting");
         System.exit(0);
     }