If i try to upload a file of more than 2 MB size its error-ed.
I found in apache web site saying "There are two separate file size limits. First is struts.multipart.maxSize which comes from the Struts 2 default.properties file. This setting exists for security reasons to prohibit a malicious user from uploading extremely large files to file up your servers disk space. This setting defaults to approximately 2 megabytes and should be adjusted to the maximum size file (2 gigs max) that your will need the framework to receive"
So I found that this issue can be solved by adding the tag with the desired max limit <constant name="struts.multipart.maxSize" value="1000000" />
in struts.xml file.
We are using struts2-convention-plugin, so we don't have struts.xml. So I was not sure where to define this max file size...
Please let me know if any one of you have come across on this..
Appreciate for your help.