Author: dims
Date: Mon Nov 10 15:54:28 2008
New Revision: 712877
URL: http://svn.apache.org/viewvc?rev=712877&view=rev
Log:
fix for WSCOMMONS-402 - SimpleHttpServer doesn't shut down cleanly on some
platforms
Modified:
webservices/commons/trunk/modules/transport/modules/http/src/org/apache/axis2/transport/http/server/DefaultConnectionListener.java
Modified:
webservices/commons/trunk/modules/transport/modules/http/src/org/apache/axis2/transport/http/server/DefaultConnectionListener.java
URL:
http://svn.apache.org/viewvc/webservices/commons/trunk/modules/transport/modules/http/src/org/apache/axis2/transport/http/server/DefaultConnectionListener.java?rev=712877&r1=712876&r2=712877&view=diff
==============================================================================
---
webservices/commons/trunk/modules/transport/modules/http/src/org/apache/axis2/transport/http/server/DefaultConnectionListener.java
(original)
+++
webservices/commons/trunk/modules/transport/modules/http/src/org/apache/axis2/transport/http/server/DefaultConnectionListener.java
Mon Nov 10 15:54:28 2008
@@ -83,6 +83,8 @@
}
AxisHttpConnection conn = new
AxisHttpConnectionImpl(socket, this.params);
this.connmanager.process(conn);
+ } catch(java.io.InterruptedIOException ie) {
+ break;
} catch (Throwable ex) {
if (Thread.interrupted()) {
break;