When you say empty URI, you mean after the root address? because its getting to my tomcat server so it must at least have that.
On Feb 12, 2008 2:17 PM, Caldarale, Charles R <[EMAIL PROTECTED]> wrote: > > From: Steven [mailto:[EMAIL PROTECTED] > > Subject: Re: Sporadic Errors in catalina log > > > > java.lang.ArrayIndexOutOfBoundsException: 0 > > at org.apache.catalina.connector.CoyoteAdapter.normalize( > > CoyoteAdapter.java:533) > > You're sending in an invalid URI - one of zero length. Admittedly, > Tomcat shouldn't crash, but you can fix your curl script to not do that > in the meantime. > > Something like this could be added early in the CoyoteAdapter.normalize > method: > > if (start == end) return false; > > The problem appears to exist in 5.5.26 and 6.0.16 as well. > > - Chuck > > > THIS COMMUNICATION MAY CONTAIN CONFIDENTIAL AND/OR OTHERWISE PROPRIETARY > MATERIAL and is thus for use only by the intended recipient. If you > received this in error, please contact the sender and delete the e-mail > and its attachments from all computers. > > --------------------------------------------------------------------- > To start a new topic, e-mail: users@tomcat.apache.org > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >