From: "Michael" <[EMAIL PROTECTED]>
In 1.1.0, putAll throws an UnsupportedOperationException. I modified my code to call put in a loop and everything worked.From the JSF 1.1 JavaDoc for getRequestMap(): "The returned Map must implement the entire contract for a modifiable map as described in the JavaDocs for java.util.Map."
I'm not sure why it was removed, but the putAll method is optional: http://java.sun.com/j2se/1.4.2/docs/api/java/util/Map.html -- Wendy Smoak

