cvs commit: xml-rpc/src/java/org/apache/xmlrpc WebServer.java

2002-08-12 Thread dlr
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

Re: cvs commit: xml-rpc/src/java/org/apache/xmlrpc WebServer.java

2002-08-12 Thread Jim Redman
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