Hey All,
I have a simple page in which the User accepts an input file and does some bussiness logic. I wanted to have validation in the ActionForm as i want to check for file format, size etc.
I have added the code to the validate method in ActionForm and if there are any errors, I create ActionMessage Object and add them to ActionErrors.
I have <html:errors/> in my
JSP so that if there are any problems, errors are displayed and the page does not gets submitted
For some reason, it is not working.
I have validate attribute set to true in the struts-config file. Actually, i can see the code going through the validate method, but then it displays a blank page ( from the URL i see in the page, it seems to be pointing to the
struts action link ). If i have a valid file, everything works fine
Any help will be appreciated greatly
