Hello!
When I use Commons FileUpload the method parseRequest(request) uploads files and also reads additional post parameters. So I can get parameter values only after uploading the files. The problem is that I need those parameter values before uploading the files (one of the parameters is upload_path).
Is there any way to get post parameters first from multipart content and then start uploading to the correct folder?
(request.getParameter(name) will return null for multipart content).
Thanks in advance!