try this.
Get the "struts-upload.war" that comes with struts framework.
Deploy it and run the test AS IS!
If it works, then check how different that code is to yours. (Use their
libraries: WEB-INF/lib)
If it doesn't, then.....well good luck ;)

--Alen



----- Original Message -----
From: "Filip Polsakiewicz" <[EMAIL PROTECTED]>
To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
Sent: Monday, August 04, 2003 4:33 PM
Subject: RE: using html:file and commons-fileupload


> I just put the fileupload jar into my webapp lib directory. But it still
> does not work. Actually in our project we use the fileupload package at
> another point too, but there we have an own servlet to handle that. Why
> doesn't it work with struts???
>
> > -----Original Message-----
> > From: Alen Ribic [mailto:[EMAIL PROTECTED]
> > Sent: Monday, August 04, 2003 4:26 PM
> > To: Struts Users Mailing List
> > Subject: Re: using html:file and commons-fileupload
> >
> >
> > > Does the Action which handles the form have to extends some specific
> > class?
> > no.
> > Just extend Action.
> >
> > --Alen
> >
> >
> > ----- Original Message -----
> > From: "Filip Polsakiewicz" <[EMAIL PROTECTED]>
> > To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> > Sent: Monday, August 04, 2003 4:22 PM
> > Subject: RE: using html:file and commons-fileupload
> >
> > >
> > > > -----Original Message-----
> > > > From: message message [mailto:[EMAIL PROTECTED]
> > > > Sent: Monday, August 04, 2003 3:38 PM
> > > > To: [EMAIL PROTECTED]
> > > > Subject: RE: using html:file and commons-fileupload
> > > >
> > > >
> > > >
> > > > Here is a copy of the code from the struts-upload example
(upload.jsp)
> > > > <html:form action="upload.do?queryParam=Successful"
> > > > enctype="multipart/form-data">
> > > > It works with out any errors.
> > > >
> > > > >From: "Filip Polsakiewicz" <[EMAIL PROTECTED]>
> > > > >Reply-To: "Struts Users Mailing List"
> > <[EMAIL PROTECTED]>
> > > > >To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> > > > >Subject: RE: using html:file and commons-fileupload
> > > > >Date: Mon, 4 Aug 2003 15:15:14 +0200
> > > > >
> > > > >I use commons-fileupload-1.0.jar
> > > > >
> > > > >here the html:code
> > > > >
> > > > >         <html:form action="/core/contact/imageSelect"
method="POST"
> > > > >enctype="multipart/form-data">
> > > > >             <html:file property="file"/>
> > > > >             <html:submit>submit</html:submit>
> > > > >         </html:form>
> > > > >
> > > > > > -----Original Message-----
> > > > > > From: Alen Ribic [mailto:[EMAIL PROTECTED]
> > > > > > Sent: Monday, August 04, 2003 3:09 PM
> > > > > > To: Struts Users Mailing List
> > > > > > Subject: Re: using html:file and commons-fileupload
> > > > > >
> > > > > >
> > > > > > Of top of my head:
> > > > > > Are you using a version of upload commons  that came with
> > > > Struts or...?
> > > > > >
> > > > > > Also, you got some code <snippet/> for clues?
> > > > > >
> > > > > > --Alen
> > > > > >
> > > > > >
> > > > > > ----- Original Message -----
> > > > > > From: "Filip Polsakiewicz" <[EMAIL PROTECTED]>
> > > > > > To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
> > > > > > Sent: Monday, August 04, 2003 2:44 PM
> > > > > > Subject: RE: using html:file and commons-fileupload
> > > > > >
> > > > > >
> > > > > > > Hi,
> > > > > > > changing the type to FormFile didn't solve the problem.
> > Any other
> > > > >ideas?
> > > > > > >
> > > > > > >
> > > > > > > > -----Original Message-----
> > > > > > > > From: Alen Ribic [mailto:[EMAIL PROTECTED]
> > > > > > > > Sent: Monday, August 04, 2003 2:28 PM
> > > > > > > > To: Struts Users Mailing List
> > > > > > > > Subject: Re: using html:file and commons-fileupload
> > > > > > > >
> > > > > > > >
> > > > > > > >
> > > > > > > > ----- Original Message -----
> > > > > > > > From: "Filip Polsakiewicz" <[EMAIL PROTECTED]>
> > > > > > > > To: "Struts Users Mailinglist"
> > <[EMAIL PROTECTED]>
> > > > > > > > Sent: Monday, August 04, 2003 2:24 PM
> > > > > > > > Subject: using html:file and commons-fileupload
> > > > > > > >
> > > > > > > >
> > > > > > > > > Hi,
> > > > > > > > > i have the following problem. I use a <html:file> element
to
> > > > > > > > choose a file
> > > > > > > > > and want it to be uploaded using commons-fileupload.
> > > > > > > > > When i submit my form i get the following exception:
> > > > > > > > >
> > > > > > > > > java.lang.NoSuchMethodError:
> > > > > > > > > org.apache.commons.fileupload.FileUpload.setSizeMax(I)V
> > > > > > > > >
> > > > > > > > > my code looks something like
> > > > > > > > >
> > > > > > > > > <html:form action="/myactions/blabla" method="post"
> > > > > > > > > enctype="multipart/form-data">
> > > > > > > > > <html:file property="myFile"/>
> > > > > > > > > </html:form>
> > > > > > > > >
> > > > > > > >
> > > > > > > > > By the way: which datatype does the property have to be
of?
> > > > > > > >
> > > > > > > > As far as I can remember it should be of type:
> > > > > > > > org.apache.struts.upload.FormFile.
> > > > > > > >
> > > > > > > > > My Action is not even called -> the exception comes
> > before the
> > > > > > > > excute-Method
> > > > > > > > > is called
> > > > > > > > >
> > > > > > > > > Help please.
> > > > > > > > >
> > > > > > > > > Filip
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > > > > > >
> > > > >
> > > ---------------------------------------------------------------------
> > > > > > > > > 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]
> > > > > > >
> > > > > >
> > > > > >
> > > > >
> > > ---------------------------------------------------------------------
> > > > > > 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]
> > > > >
> > > >
> > > > _________________________________________________________________
> > > > The new MSN 8: smart spam protection and 2 months FREE*
> > > > http://join.msn.com/?page=features/junkmail
> > > >
> > > >
> > >
> ---------------------------------------------------------------------
> > > > 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]
> >
>
>
> ---------------------------------------------------------------------
> 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