gregh3269 opened a new pull request, #893:
URL: https://github.com/apache/struts/pull/893

   Testing the original file upload and it now does not work.
   
   I get an error where its using the wrong file name ie 
upload5549a568d9794ef5b654da83d079613500000045.tmp rather than the
   actual file name.  This fixes the original upload.
   
   I also modified one of my uploads to use the UploadedFilesAware.  To get the 
original file name to save on the server I use
   
   ```
   for (int i = 0; i < uploads.size(); i++) {
       String fileName = uploads.get(i).getOriginalName();
       ....
   }
   ```
   The method getOriginalName() text says "original file name from upload 
source" so it looks correct.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to