Apparently this option is not available in older JSF implementations. I've temporarily lost track of where Sun lists these options, so I don't know at what level it kicks in, but probably JSF 1.2.
WebSphere will only honor the option if you have a certain minimum version of the WAS server installed, as indicated by the APARs quoted.
You're more or less stuck with the server's limitations on the core JSF unless you do like
JBoss and explicitly pull in an external JSF core instead of using the server-provided one. And I can't really recommend that as a long-term solution, so if you've got a cleaner alternative, take it.
I try to avoid using the JSF component classes directly. For one thing, the "ideal" JSF backing bean shouldn't require any package that begins with javax.faces. (but try that if you have data models!). It reduces portability and testability. For another, I think that their use is overdone - possibly because JSF mutated a lot in its early days and the cleaner, more portable facilities provided by EL value bindings may not have been available when a lot of the original examples were written.
Regardless, the net effect is probably going to be about the same - I just prefer simplicity when I can get it. The actual state-saving issues my require your to have a server upgrade done.