> Matt Krevs wrote:

> > Calling request.setAttribute(attributeName, value) with a
> > different value causes an IllegalStateException.

Really?  That's not the behavior I see, and in Request.java I see:

    public void setAttribute(String name, Object value) {
        attributes.put(name, value);
    }

"attributes" is a Hashtable, so where's the ISE come in?

-jh-

--
Jason Hunter
[EMAIL PROTECTED]
Book:    http://www.servlets.com/book
2.0 to 2.1: http://www.javaworld.com/jw-12-1998/jw-12-servletapi.html
2.1 to 2.2: http://www.javaworld.com/jw-10-1999/jw-10-servletapi.html

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
FAQs on JSP can be found at:
 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html

Reply via email to