RE: InputBuffer and Posting Data

2006-03-28 Thread Vikram Goyal
Betreff: Re: InputBuffer and Posting Data > What is buf.length? Is it the actual length of the data you want to post > or is it 8k? > The data you receive on the Tomcat side may be truncated by the > Connector if the body data is longer than the value set for the > Content-Leng

RE: InputBuffer and Posting Data

2006-03-28 Thread Vikram Goyal
value set for the Content-Length header. HTH, Jon Vikram Goyal wrote: > Hi all, > > > > I am trying to post some data via an applet to a JSP running on Tomcat > 5.5.16. In my applet code, I am setting the following: > > > > p

RE: InputBuffer and Posting Data

2006-03-27 Thread Vikram Goyal
-Original Message- From: Farrow, Marc [mailto:[EMAIL PROTECTED] Sent: Monday, 27 March 2006 11:03 PM To: Tomcat Users List Subject: RE: InputBuffer and Posting Data This would seem like a Java question and not a Tomcat question. -Original Message- From: Vikram Goyal [mailto

RE: InputBuffer and Posting Data

2006-03-27 Thread Vikram Goyal
e) to make it a post. There is also a setUseCaches() (true or false) to control caching, default is true (reload button). Most of my statement is from the Javadocs. Vikram Goyal wrote: > > Hi all, > > > > I am trying to post some data via an applet to a JSP running on Tomcat

InputBuffer and Posting Data

2006-03-26 Thread Vikram Goyal
Hi all, I am trying to post some data via an applet to a JSP running on Tomcat 5.5.16. In my applet code, I am setting the following: postConn.setRequestMethod("POST"); postConn.setRequestProperty("Content-Length", (buf.length) + ""); postConn.setRequestProperty("Content-Type", "app