You are absolutely correct. That was my blurry-eyed mistake at 2am. Here's the code that shows that if nothing is defined, it's session scope:
if ("request".equals(mapping.getScope())) { request.setAttribute(mapping.getAttribute(), instance); }else{ HttpSession session = request.getSession(); session.setAttribute(mapping.getAttribute(), instance); } In the "if" part of the statment, if mapping.getScope() call returns null, then ActionForm instance will always be set into the session in the else part of the statment. Thanks for the correction, Chuck -- Sent via jApache.org -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>