<html:submit value="Upload Your Request" styleClass="buttons"> </html:submit>
</html:form>
I use the validator framework to validate my input fields.
I also have a validation in my ActionForm to look if the size of the file is < 1MB.
If I don't use any client side validation, there's no problem. The validation for the max file size works.
If I enable the client side validation using the html:javascript tag, the request never come back!
I see in the log that the validate() method detect the error for the file size, and the input is forward to my JSP but I don't see anything in the browser, it's seems that the response is endless...
P.S. I could use a redirect when the error occurs but it's not acceptable from the user point of view (I really need a forward)