2011/3/12 Christopher Schultz <ch...@christopherschultz.net>: >> https://issues.apache.org/bugzilla/show_bug.cgi?id=50883 >> > - From your bug report, this stack trace does not look right at all >(...) > > - From that stack trace, it appears that > ApplicationHttpRequest.setAttribute is calling HttpServlet.service which > would be very surprising. > > It would be good to know what filters you have running and what wrappers > are being added to the request. >
I agree that the stack trace does look suspicious. My suspicion is that there is a loop of forwards being done by that filter, > (...) > at > org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:374) > at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:302) > at com.kony.web.controller.KonyBaseServlet.navigateToNextForm(Unknown Source) Each doForward() wraps the request once. So, after a thousand of forwards you have a long chain of thousand requests, on which you are calling that setAttribute() method. Thus, there is no wonder that that method is mentioned on the stack trace a thousand times. Best regards, Konstantin Kolinko --------------------------------------------------------------------- To unsubscribe, e-mail: users-unsubscr...@tomcat.apache.org For additional commands, e-mail: users-h...@tomcat.apache.org