RE: 5.0.28 stack overflow?

2004-10-05 Thread Shapira, Yoav
Hi, It sure looks like ApplicationHttpRequest.getRequest() returned itself a copy of itself... If you really want to track this down, you can prove (or disprove) the above by building your own tomcat that does a toString() call on the request of AppliationHttpRequest.getRequest. You'll see

Re: 5.0.28 stack overflow?

2004-10-04 Thread Tim Funk
I'm guessing your using an HttpServletRequestWrapper. My guess might be the way your implementation overrode getRequest() might be doing wacky things. ApplicationHttpRequest extends HttpServletRequestWrapper -Tim Cott Lang wrote: Anyone ever seen one like this? :) ApplicationDispatcher[]

RE: 5.0.28 stack overflow?

2004-10-04 Thread Shapira, Yoav
Hi, 99.9% of the time, it's your fault, with a large majority of these cases being infinite recursion. How does the CPU behave when leading up to this error? Yoav Shapira Millennium Research Informatics -Original Message- From: Cott Lang [mailto:[EMAIL PROTECTED] Sent: Monday, October

Re: 5.0.28 stack overflow?

2004-10-04 Thread Cott Lang
Good guess, but no... not using anything of the sort. :) Yoav, I agree, 99.9% of the time, it's my fault. As you can see in the stack trace, it's being called directly from Struts. I don't really see how my code could cause this. It sure looks like ApplicationHttpRequest.getRequest() returned