Hi, We're trying to get JSP's working with Servlet spec 2.3 (because WebLogic 7 requires it) using: JSPEngineImplNamedDispatcherInclude (Coocoon 2.0.4 implements Servlet spec 2.2)
So, I have a new implementation of the: MyServletRequest class (which lives inside JSPEngineImplNamedDispatcherInclude) see code below: But I am getting stuck in an endless loop in the getAttribute method. Even though I can see that 's' does indeed match: "javax.servlet.include.servlet_path" Where does the external call to getAttribute come from? Any immediate thoughts on what the problem could be? Or are you already working on 2.3 support? (if not any idea when?) Charelene ^^^^^^^^^ class MyServletRequest extends HttpServletRequestWrapper { String jspFile; public MyServletRequest(HttpServletRequest request, String jspFile) { super(request); this.jspFile = jspFile; } public Object getAttribute(String s){ if(s != null && s.equals(INC_SERVLET_PATH)) return jspFile; return super.getAttribute(s); } } __________________________________________________ Do You Yahoo!? Everything you'll ever need on one web page from News and Sport to Email and Music Charts http://uk.my.yahoo.com --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, email: [EMAIL PROTECTED]