RE: Posting "multipart/form-data"

2001-05-14 Thread Beau Bisquette
Hi, Brandon At 05/14/2001 09:29 -0500, Brandon Cruz wrote: >Yeah, I have been using ajp12, I finally got it to work right. It just >seems to die whenever I use request.getParameter on a multipart/form-data >submission. I don't know if that is something with tomcat or what though. >It seems the

RE: Posting "multipart/form-data"

2001-05-14 Thread Brandon Cruz
art or not... Brandon -Original Message- From: Sandy McPherson [mailto:[EMAIL PROTECTED]] Sent: Monday, May 14, 2001 4:56 AM To: [EMAIL PROTECTED] Subject: RE: Posting "multipart/form-data" If you are usinf 3.2 or 3.2.1 with Ajp13 there is a bug use Ajp12 for any multi-part >

RE: Posting "multipart/form-data"

2001-05-14 Thread Sandy McPherson
If you are usinf 3.2 or 3.2.1 with Ajp13 there is a bug use Ajp12 for any multi-part > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > On Behalf Of Bo Xu > Sent: Friday, May 11, 2001 5:07 PM > To: [EMAIL PROTECTED] > Subject: Re: Posting

Re: Posting "multipart/form-data"

2001-05-13 Thread skolski
Hi Bo, I think I use the same class then you. my .jsp File looks like this: <%@ page import="com.oreilly.servlet.*" %> <%@ page import="com.oreilly.servlet.multipart.*" %> <% try { MultipartRequest multi=new MultipartRequest(request,"\\jakarta-tomcat\\webapps\\weblight2\\uploads\\", 1000

RE: Posting "multipart/form-data"

2001-05-11 Thread Brandon Cruz
might be the way the java servlet code works. Funny that there no exceptions or anything though, it just doesn't display the page. -Original Message- From: William Kaufman [mailto:[EMAIL PROTECTED]] Sent: Friday, May 11, 2001 10:36 AM To: '[EMAIL PROTECTED]' Subjec

RE: Posting "multipart/form-data"

2001-05-11 Thread William Kaufman
e* classes. -- Bill K. > -Original Message- > From: Bo Xu [mailto:[EMAIL PROTECTED]] > Sent: Friday, May 11, 2001 8:07 AM > To: [EMAIL PROTECTED] > Subject: Re: Posting "multipart/form-data" > > >

Re: Posting "multipart/form-data"

2001-05-11 Thread Bo Xu
Frans Verhoef wrote: > One good API for dealing with multipart/form-data is the > com.oreilly.servlet package. > http://www.servlets.com/cos/index.html > > I used it myself, and it works really great. And if you want to use it > commercially, you just need to buy the book of oreilly. > > Frans >

Re: Posting "multipart/form-data"

2001-05-11 Thread Frans Verhoef
One good API for dealing with multipart/form-data is the com.oreilly.servlet package. http://www.servlets.com/cos/index.html I used it myself, and it works really great. And if you want to use it commercially, you just need to buy the book of oreilly. Frans On 10 May 2001, at 17:25, Brandon C

Re: Posting "multipart/form-data"

2001-05-10 Thread Egidijus Drobavicius
Yes, I've dealt with similar problem. First, you have to use POST method to upload files; Second, you have to implement your doPost method to handle that kind of request. All parameters, files etc are provided via input stream. If you dont read single byte from that stream, you get this 404 error.