Hello!
I have a seam app and would like to use the MultiPowUploader (http://www.element-it.com/multiple-file-upload/flash-uploader.aspx). They give some processing script files (.asp, .aspx, .php), including a .jsp. One should define a flashvar parameter with the relative path of the script. When I try to upload, I get the following errors:
org.apache.jasper.JasperException: Unable to compile class for JSP:
An error occurred at line: 6 in the generated java file Only a type can be imported. org.apache.commons.fileupload.FileItem resolves to a package
An error occurred at line: 7 in the generated java file Only a type can be imported. org.apache.commons.fileupload.servlet.ServletFileUpload resolves to a package
An error occurred at line: 8 in the generated java file Only a type can be imported. org.apache.commons.fileupload.disk.DiskFileItemFactory resolves to a package
I included the commons-fileupload-1.2.1.jar. Even if this would work, I don't think this is the best way to do it, having this in a .jsp when the app does not use any .jsp...
Any advice? Thanks!