Re: Multipart Request

2005-10-09 Thread Dakota Jack
Are you using Struts? Struts has a bizarre idea that causes this type of problem. On 10/8/05, Dhiren Bhatia [EMAIL PROTECTED] wrote: Hi all, I'm having trouble with the HttpServletRequest object if my post contains multipart data. The request object loses all the parameters set from the

Re: Multipart Request

2005-10-09 Thread Dhiren Bhatia
Yea, I'm using Struts. I like some of its features so I want to continue using it. But multipart is a mess. So, is there any way to retain the parameters in HTTPServletRequest? Thanks. On 10/9/05, Dakota Jack [EMAIL PROTECTED] wrote: Are you using Struts? Struts has a bizarre idea that causes

Re: Multipart Request

2005-10-09 Thread Dakota Jack
You either have to stop using ActionForm or go in and rewrite the code on multiparts. The existing code is really sloppy and bad. There are references that do nothing. Others do things they shouldn't do, etc. Essentially, you really should avoid using it and write your own implementation of

Multipart Request

2005-10-08 Thread Dhiren Bhatia
Hi all, I'm having trouble with the HttpServletRequest object if my post contains multipart data. The request object loses all the parameters set from the html form. i.e. request.getParameter(myParam); always returns null. If I remove the multipart encoding from my form, I see the parameter

Re: Multipart Request

2005-10-08 Thread James Black
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Dhiren Bhatia wrote: Hi all, I'm having trouble with the HttpServletRequest object if my post contains multipart data. The request object loses all the parameters set from the html form. i.e. request.getParameter(myParam); always returns null.

Multipart Request

2001-05-28 Thread David DELGRANCHE
Hi I have a servlet which has two parameters, a binary one and a non-binary one. I used to work with JServ and an O'Reilly package to do multipart Request, so I could pass binary and non-binary informations in the same HttpServletRequest. I wanted using Tomcat

RE: Multipart Request

2001-05-28 Thread Bhat, Mahesh
[mailto:[EMAIL PROTECTED]] Sent: Monday, May 28, 2001 4:49 PM To: Liste de diffusion TomCat (Adresse de messagerie) Subject: Multipart Request Hi I have a servlet which has two parameters, a binary one and a non-binary one. I used to work with JServ and an O'Reilly

Tomcat and multipart request

2001-04-17 Thread David DELGRANCHE
Hi all, I want to use Tomcat to do multipart request. I used to work with JServ and had difficulties to do multipart request. Is it possible to do it with Tomcat. if it's the case, what version of JSDK do I have to use? thanks for help David. David

Re: Tomcat and multipart request

2001-04-17 Thread H.F.N. den Boer
- Original Message - From: David DELGRANCHE [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 17, 2001 5:04 PM Subject: Tomcat and multipart request Hi all, I want to use Tomcat to do multipart request. I used to work with JServ and had difficulties to do multipart request

RE: Tomcat and multipart request

2001-04-17 Thread Benoit Jacquemont
Hi, First of all, you should totally forget about JSDK. Tomcat is the reference implementation of the Servlet API from SUN. So delete your JSDK folder before continuing (;-) ). Anyway, Tomcat handles perfectly multipart request. Benoit Hi all, I want to use Tomcat to do