Re: EOFException in AjpNioProcessor

2013-12-26 Thread Jesse Barnum
On Dec 23, 2013, at 12:50 PM, Konstantin Preißer wrote: > In that case, the stacktrace would show that the Exception is thrown in the > webapp's code (and if the Exception is created using a cause, it would show a > "Caused by: ..." stacktrace showing the original source). > > However, the sta

RE: EOFException in AjpNioProcessor

2013-12-23 Thread Konstantin Preißer
Hi André, > -Original Message- > From: André Warnier [mailto:a...@ice-sa.com] > Sent: Monday, December 23, 2013 6:09 PM > To: Tomcat Users List > Subject: Re: EOFException in AjpNioProcessor > > Jesse Barnum wrote: > > On Dec 22, 2013, at 8:54 AM, Konstantin P

RE: EOFException in AjpNioProcessor

2013-12-23 Thread Konstantin Preißer
Hi Jesse, > -Original Message- > From: Jesse Barnum [mailto:jsb_tom...@360works.com] > Sent: Monday, December 23, 2013 5:46 PM > To: Tomcat Users List > Subject: Re: EOFException in AjpNioProcessor > > On Dec 22, 2013, at 8:54 AM, Konstantin Preißer > wrote:

Re: EOFException in AjpNioProcessor

2013-12-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 André, On 12/23/13, 12:09 PM, André Warnier wrote: > Jesse Barnum wrote: >> On Dec 22, 2013, at 8:54 AM, Konstantin Preißer >> wrote: >> >>> I suspect the AJP client intentionally closes the connection if >>> e.g. the HTTP client which connected t

Re: EOFException in AjpNioProcessor

2013-12-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Jessie, On 12/23/13, 11:45 AM, Jesse Barnum wrote: > On Dec 22, 2013, at 8:54 AM, Konstantin Preißer > wrote: > >> I suspect the AJP client intentionally closes the connection if >> e.g. the HTTP client which connected to the outer Webserver >> (H

Re: EOFException in AjpNioProcessor

2013-12-23 Thread André Warnier
Jesse Barnum wrote: On Dec 22, 2013, at 8:54 AM, Konstantin Preißer wrote: I suspect the AJP client intentionally closes the connection if e.g. the HTTP client which connected to the outer Webserver (HTTPD, IIS) aborted the HTTP connection (or there was some other error) so this error is ref

Re: EOFException in AjpNioProcessor

2013-12-23 Thread Jesse Barnum
On Dec 22, 2013, at 8:54 AM, Konstantin Preißer wrote: > I suspect the AJP client intentionally closes the connection if e.g. the HTTP > client which connected to the outer Webserver (HTTPD, IIS) aborted the HTTP > connection (or there was some other error) so this error is reflected at > Tomc

Re: [OT] EOFException in AjpNioProcessor

2013-12-23 Thread André Warnier
Christopher Schultz wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Konstantin, On 12/22/13, 8:54 AM, Konstantin Preißer wrote: Note that the reason for a EOFException is slightly different than just reading from a stream when there is no more data present. In Java (and .Net), when yo

Re: [OT] EOFException in AjpNioProcessor

2013-12-22 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA256 Konstantin, On 12/22/13, 8:54 AM, Konstantin Preißer wrote: > Note that the reason for a EOFException is slightly different than > just reading from a stream when there is no more data present. > > In Java (and .Net), when you read from a Stream w

RE: EOFException in AjpNioProcessor

2013-12-22 Thread Konstantin Preißer
HI André, > -Original Message- > From: André Warnier [mailto:a...@ice-sa.com] > Sent: Sunday, December 22, 2013 12:25 PM > To: Tomcat Users List > Subject: Re: EOFException in AjpNioProcessor > > I guess another way to phrase the question is, "what would cause a

Re: EOFException in AjpNioProcessor

2013-12-22 Thread André Warnier
André Warnier wrote: Jesse Barnum wrote: On Dec 18, 2013, at 1:40 PM, André Warnier wrote: Jesse Barnum wrote: On Dec 18, 2013, at 12:27 PM, Jesse Barnum wrote: I'm seeing this error a lot in my log files. It happens when I am trying to read from the request InputStream. Should I be concer

Re: EOFException in AjpNioProcessor

2013-12-22 Thread André Warnier
Jesse Barnum wrote: On Dec 18, 2013, at 1:40 PM, André Warnier wrote: Jesse Barnum wrote: On Dec 18, 2013, at 12:27 PM, Jesse Barnum wrote: I'm seeing this error a lot in my log files. It happens when I am trying to read from the request InputStream. Should I be concerned about this, or is

RE: EOFException in AjpNioProcessor

2013-12-21 Thread Martin Gainty
> Subject: Re: EOFException in AjpNioProcessor > From: jsb_tom...@360works.com > Date: Sat, 21 Dec 2013 16:58:07 -0500 > To: users@tomcat.apache.org > > On Dec 18, 2013, at 1:40 PM, André Warnier wrote: > > > Jesse Barnum wrote: > >> On Dec 18, 20

Re: EOFException in AjpNioProcessor

2013-12-21 Thread Jesse Barnum
On Dec 18, 2013, at 1:40 PM, André Warnier wrote: > Jesse Barnum wrote: >> On Dec 18, 2013, at 12:27 PM, Jesse Barnum wrote: >>> I'm seeing this error a lot in my log files. It happens when I am trying to >>> read from the request InputStream. Should I be concerned about this, or is >>> it jus

Re: EOFException in AjpNioProcessor

2013-12-18 Thread André Warnier
Jesse Barnum wrote: On Dec 18, 2013, at 12:27 PM, Jesse Barnum wrote: I'm seeing this error a lot in my log files. It happens when I am trying to read from the request InputStream. Should I be concerned about this, or is it just the equivalent of the user clicking 'stop' in their browser?

RE: EOFException in AjpNioProcessor

2013-12-18 Thread Konstantin Preißer
Hi Jesse, > -Original Message- > From: Jesse Barnum [mailto:jsb_tom...@360works.com] > Sent: Wednesday, December 18, 2013 6:58 PM > To: Tomcat Users List > Subject: Re: EOFException in AjpNioProcessor > > On Dec 18, 2013, at 12:27 PM, Jesse Barnum > wrote: >

Re: EOFException in AjpNioProcessor

2013-12-18 Thread Jesse Barnum
On Dec 18, 2013, at 12:27 PM, Jesse Barnum wrote: > I'm seeing this error a lot in my log files. It happens when I am trying to > read from the request InputStream. Should I be concerned about this, or is it > just the equivalent of the user clicking 'stop' in their browser? > >> SEVERE: An er

EOFException in AjpNioProcessor

2013-12-18 Thread Jesse Barnum
I'm seeing this error a lot in my log files. It happens when I am trying to read from the request InputStream. Should I be concerned about this, or is it just the equivalent of the user clicking 'stop' in their browser? > SEVERE: An error occurred while handling request > /WSMRegister/LicenseCh