Hi Rafael,
Mario Wrote:
>You cant prevent the "repost data" dialog box if you use "form
>method=POST" - and this is required with JSF.
I've tried, Mario, but the h:form component don't have a method
attribute... Is there any other place that I configure the form method to
POST (web.xml or faces-config.xml, maybe)???
In JSF method=POST is the default, you can avoid such messges if you use
method=GET, but this is not possible with JSF.
JSF requires method=POST and thus you cant get rid of this message, sorry.
method=GET uses the URL to pass back the form values, but this string is
limited in size - depending on browser/proxy/webserver this size is
different.
Now (especially with state_saving=client) that JSF transfer relatively
hugh data its required to use POST.
---
Mario