On Wed, 2005-09-21 at 11:42 +0200, Rusky wrote: > Hi, > > We run webservices under XSP, Debian sarge. We use the latest version of > Debian Sarge, Linux 2.4.27-2-386, xsp-1.1.9, mono-1.1.9, mono and xsp, > installed from source code. > > We have the following problem: > > We run the XSP with "echo web service, mono --trace=xsp" command. In > case of the data size (size of the complete SOAP message) larger than > 1024 byte, we got an exception of the XSP:
The request sent to xsp is asking for the connection to stay open for more possible requests (either Connection: keep-alive or it's HTTP/1.1 ...). So xsp server the request and then keeps trying to read from the socket. After a 15s timeout, the read fails and the socket is closed. There's nothing wrong there. -Gonzalo _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
