I have encountered an unusual behavior with respect to file upload capability in Struts 1.1 application.
I have configured the max upload file size limit using the tag in struts configuration file as follows.
Struts uses common fileupload library to handle file uploading functionality by default and if the file being uploaded exceeds the max file size, it sets a request-scopedattribute in the type of Boolean, under the name of the constant value : MultipartRequestHandler.ATTRIBUTE_MAX_LENGTH_EXCEEDED.
But I experienced an unusual behavior with large file upload. When uploading a larger file which is 300MB in size.
Is there any solution for that?
Am I missing something?
I'm using Struts 1.1 and common file upload 1.2 combination.
Also, I re-tested the same functionality with common file uploads 1.3, but the behavior is same.
Does anyone have any idea on solving this?