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 multipart/form-data Frans

RE: Posting multipart/form-data

2001-05-14 Thread Brandon Cruz
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 -Original Message

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-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 Egidijus Drobavicius
() to see the length of the content and avoid upload of extremely large files. Egidijus - Original Message - From: Brandon Cruz [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, May 11, 2001 12:25 AM Subject: Posting multipart/form-data When I try to specify enctype=multipart/form

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

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 On 10

RE: Posting multipart/form-data

2001-05-11 Thread William Kaufman
. -- 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 Frans Verhoef wrote: One good API for dealing

RE: Posting multipart/form-data

2001-05-11 Thread Brandon Cruz
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]' Subject: RE: Posting multipart/form-data You'll

Posting multipart/form-data

2001-05-10 Thread Brandon Cruz
When I try to specify enctype=multipart/form-data, the page just goes blank and IE says that it can't find server. Anyone know why this might happen? Brandon