DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8602>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=8602 We have the problem which is not terminated normally the operation of WebServer service. Summary: We have the problem which is not terminated normally the operation of WebServer service. Product: XML-RPC Version: unspecified Platform: PC OS/Version: Windows NT/2K Status: NEW Severity: Normal Priority: Other Component: Source AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] * XML-RPC for JAVA. We have the problem which is not terminated normally the operation of WebServer service.(shutdown method) This was grasped by the threadpool causing by the reason why the threadpool is not initialized. The problem we are about a version 1.0. We appended WebServer.java file which is modified to the temporary. Kim Hee-Yong(Nickname : daffodil) [EMAIL PROTECTED] 115-9 Nakwon-dong Chuncheon-si Kangwon-do, Republic of Korea Mirero C&C Coperation. * modified WebServer.java public class WebServer implements Runnable { .... public void run() { .... } catch (Exception exception) { .... } finally { System.err.println("Closing XML-RPC server socket."); try { serverSocket.close(); serverSocket = null; } catch (IOException ignore) {} releaseThreadPool(); } } public void releaseThreadPool() { Runner r; try { while (true) { r = (Runner)threadpool.pop(); if (r.thread.isAlive()) r.thread.interrupt (); r.thread = null; } } catch (EmptyStackException ex) { } } .... }