Details
Description
Can following code in CustomerServiceSpringServer.java
System.out.println("Server started. Press any key to shut down.");
System.in.read();
ctx.close();
be changed to
Thread.sleep(5 * 60 * 1000);
ctx.close();
System.out.println("Server exiting");
?
In this way the demo server will exit in the same style as other cxf demos, otherwise extra overhead for testing automation framework has to be introduced