>From: "Craig McClanahan" [EMAIL PROTECTED] > >One minor problem ... this (or the solutions below) will not work, because the >map returned by >getRequestParameterMap() is immutable -- it cannot be changed. In turn, this >restriction comes from > the fact that request parameters are read only at the servlet API level ... > you cannot change them. > >If you want to pass dynamically calculated information for this request to >some other part of the >application, use request *attributes* instead. >
Oh yeah, that's a major problem.. thanks for correcting me. I see 8-) http://svn.apache.org/viewvc/myfaces/core/trunk/impl/src/main/java/org/apache/myfaces/context/servlet/RequestParameterMap.java?view=markup > >Craig Gary

