RE: IO error: request.getReader(); readLine(); on Netscape

2004-10-19 Thread Daxin Zuo
Thank all of you: Yoav, Ben, and Larry. I am using the Commons Fileupload. Thank you again. -Original Message- From: Larry Meadors [mailto:[EMAIL PROTECTED] Sent: Monday, October 18, 2004 1:19 PM To: [EMAIL PROTECTED] Subject: RE: IO error: request.getReader(); readLine(); on Netscape

IO error: request.getReader(); readLine(); on Netscape

2004-10-18 Thread Daxin Zuo
Hi, I have code like: BufferedReader breader = request.getReader(); String rdata = breader.readLine(); while (rdata != null) { .. } It run's well with IE. On Netscape7.1, I get java.io.IOException My purpose is to upload a file. Could you please give me

Re: IO error: request.getReader(); readLine(); on Netscape

2004-10-18 Thread Ben Souther
Where is this code? On the client? the server? On Mon, 2004-10-18 at 15:11, Daxin Zuo wrote: Hi, I have code like: BufferedReader breader = request.getReader(); String rdata = breader.readLine(); while (rdata != null) { .. } It run's well with IE. On

RE: IO error: request.getReader(); readLine(); on Netscape

2004-10-18 Thread Shapira, Yoav
: Re: IO error: request.getReader(); readLine(); on Netscape Where is this code? On the client? the server? On Mon, 2004-10-18 at 15:11, Daxin Zuo wrote: Hi, I have code like: BufferedReader breader = request.getReader(); String rdata = breader.readLine(); while (rdata

RE: IO error: request.getReader(); readLine(); on Netscape

2004-10-18 Thread Daxin Zuo
Subject: Re: IO error: request.getReader(); readLine(); on Netscape Where is this code? On the client? the server? On Mon, 2004-10-18 at 15:11, Daxin Zuo wrote: Hi, I have code like: BufferedReader breader = request.getReader(); String rdata = breader.readLine(); while (rdata

RE: IO error: request.getReader(); readLine(); on Netscape

2004-10-18 Thread Shapira, Yoav
Hi, different application server, we need to support customer's server. So I like to ask if the Jakarta Commons Fileupload is a standard component? If not, does other application server has similar component? Like database connection pool, all application servers have it. So I may be able to

RE: IO error: request.getReader(); readLine(); on Netscape

2004-10-18 Thread Ben Souther
be able to wrap it. Thanks -Original Message- From: Shapira, Yoav [mailto:[EMAIL PROTECTED] Sent: Monday, October 18, 2004 12:33 PM To: Tomcat Users List Subject: RE: IO error: request.getReader(); readLine(); on Netscape Hi, This code is on the server, I'd image. My advice

RE: IO error: request.getReader(); readLine(); on Netscape

2004-10-18 Thread Larry Meadors
List Subject: RE: IO error: request.getReader(); readLine(); on Netscape Hi, This code is on the server, I'd image. My advice: don't re-invent the wheel, use Jakarta Commons Fileupload. Yoav Shapira http://www.yoavshapira.com -Original Message- From: Ben Souther [mailto:[EMAIL PROTECTED