To achieve decent performance with Tomahawk state saving has to be set to "server" and serialization turned off.
Trinidad in contrast recommends to use state saving on "client". (due to its token-based mechanism).
State saving is controlled by single parameter which is set for the whole web app.

    <context-param>
        <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
        <param-value>client</param-value>
        <!--param-value>server</param-value-->
    </context-param>


How would it be possible to combine Trinidad and Tomahawk in a single web app with this restriction?

Thanks,
--MG

Reply via email to