Re: interrupting a multipart post request?

2008-03-25 Thread Christian Kindler
Christopher Schultz wrote: Christian Kindler wrote: | Maybe it's a good question for tomcat-dev... Agreed. Post back if you find a solution. The only answer I got on tomcat-dev is the following one. So it really seems to be a protocol problem... Rick Knowles wrote: Christian

Re: interrupting a multipart post request?

2008-03-14 Thread Christian Kindler
Christian Kindler schrieb: Christopher Schultz schrieb: Christian Kindler wrote: | I want to interrupt a multipart post request (e.g. if the content-length | exceeds a given limit). The problem is, that the client seems to | continue sending the data to the server and gets no response from

Re: interrupting a multipart post request?

2008-03-14 Thread Christian Kindler
Christopher Schultz wrote: Christian Kindler wrote: | Is something like Thread.currentThread().interrupt() the only way to | stop a multipart post request? I'm pretty sure you don't want to do that. The javadoc for Thread.interrupt states that any blocked I/O calls will be aborted, but you

Re: interrupting a multipart post request?

2008-03-10 Thread Christian Kindler
Christopher Schultz schrieb: Christian Kindler wrote: | I want to interrupt a multipart post request (e.g. if the content-length | exceeds a given limit). The problem is, that the client seems to | continue sending the data to the server and gets no response from the | server until the whole

interrupting a multipart post request?

2008-03-07 Thread Christian Kindler
Hello, I'm not sure if this is tomcat or general servlet issue. I hope you can help me anyway. I want to interrupt a multipart post request (e.g. if the content-length exceeds a given limit). The problem is, that the client seems to continue sending the data to the server and gets no