Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
The ClickServlet.renderJSP always forward to the *.htm page, and it causes a loop and OutOfMemory.
The following code, always execute the "else" clause, because the "page.getTemplate()" returns the page with *.htm extension, and the page.getForward() returns the page with the *.jsp extension. This code works if the we use some Border page, but otherwise a OutOfMemory happens.
if (page.getForward().equals(page.getTemplate()))
{ dispatcher = request.getRequestDispatcher(page.getForward()); }else
{ dispatcher = request.getRequestDispatcher(page.getTemplate()); }The patch is attached.
regards,