I will. But somehow I need to read the data before I can send it to a bean.

Shervin

James Carman wrote:
As a side note, you might consider not polluting your "view" code
(your JSPs) with such complicated logic.  Try moving this sort of code
into a helper bean or something.


On 11/15/06, Shervin Asgari <[EMAIL PROTECTED]> wrote:
Hello.

I am trying to test FileUpload, and used a sample from the User Guide
and Streaming Guide. But I get the same error.

I have uploaded the commons-fileupload.1.1 to my WEB-INF/lib directory
and when the first test, which is

boolean isMultipart = ServletFileUpload.isMultipartContent(request);
returns true.
So I know I have a multipart/form-data

But when I try to read the data I get an error.
FileItemIterator iter = upload.getItemIterator(request);

org.apache.jasper.JasperException: Unable to compile class for JSP

An error occurred at line: 8 in the jsp file: /test/uploadPhoto.jsp
Generated servlet error:
FileItemIterator cannot be resolved to a type


It seems it cannot find FileItemIterator. I have imported
<%@ page import="org.apache.commons.fileupload.*"%>
and in desperation I tried to import mostly all I found logical
<%@ page import="org.apache.commons.fileupload.servlet.*"%>
<%@ page import="org.apache.commons.fileupload.portlet.*"%>
<%@ page import="org.apache.commons.collections.*"%>

but still I get the same error. What am I doing wrong? I am using Java
1.4.2, maybe I have to use 1.5?
Could that be the problem?

--
Shervin Asgari - System Consultant
M: +47 918 64 148, @: [EMAIL PROTECTED]
Linpro AS - Leading on Linux    Tel: +47 21 54 41 00/02
Vitaminveien 1A        Fax: +47 21 54 41 01
PB 4 Grefsen, 0409 Oslo    WWW: http://www.linpro.no/


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to