dlr 2002/08/12 19:02:28
Modified:src/java/org/apache/xmlrpc WebServer.java
Log:
start(): Marked the "XML-RPC Weblistener" thread as a daemon thread to
assure the JVM will be able to shutdown if this thread is still
running when System.exit() is called or an appropriate signa
I don't think that this is correct. If the only thread is the listener
then the server should stay listening and not exit. With the thread
set to daemon, if the only remaining thread in the application is the
server, the application will exit.
If you run the "main" in that class does it exit