SSL Encryption buffer size

2003-09-24 Thread William Bondy
I have SSL clients that can process maximum 4Kb of encrypted data per chunk. Is there a way to configure the Coyote SSL factory to produce SSL sockets that will not use an encrypt buffer greater than 4Kb? Thank you. Bill.

Receiving Transfer-coding: chunked

2003-10-14 Thread William Bondy
If a client sends content (via a POST) using chunked transfer-coding, how is the content retreived via a servlet? Does the user need to be concerned with getting the inputstream and handling the content directly in chunked format since the length may not be known at processing time? I.e. the

RE: Receiving Transfer-coding: chunked

2003-10-14 Thread William Bondy
Transfer-coding: chunked To make things easier use something like the Jakarta commons projects FileUpload API in your servlet to parse the request: http://jakarta.apache.org/commons/fileupload/ Hope that helps, George -Original Message- From: William Bondy [mailto:[EMAIL PROTECTED

Setting JVM options for Servlet

2003-10-15 Thread William Bondy
I have a servlet application that requires tuning of JVM command line operations to have decent performace. I need to tune things like the heap size and garbage collection parameters. How do I do this, do I have to change Tomcat startup files? Or is there a way to have contexts run in their own

HTTP Connect support

2003-10-17 Thread William Bondy
I would like to possibly use tomcat to act as a proxy server and handle proxy connections, how does Tomcat handle HTTP Connect methods, or does it?

RE: HTTP Connect support

2003-10-17 Thread William Bondy
instead. -Original Message- From: William Bondy [mailto:[EMAIL PROTECTED] Sent: 17 octobre, 2003 11:37 To: [EMAIL PROTECTED] Subject: HTTP Connect support I would like to possibly use tomcat to act as a proxy server and handle proxy connections, how does Tomcat handle HTTP Connect

HttpServletResponse handling

2003-10-23 Thread William Bondy
Is there a way to suppress the Date and Server headers from being automatically generated in HttpServletResponses ? Thanks, Bill.

Content length

2003-10-24 Thread William Bondy
I have a client browser that acts a bit in a non-standard fashion, for http responses with content-length set (keep-alive) it expects the content-length worth of data PLUS an extra \r\n that is not counted in the content length header sent. When I set the HttpServletResponse contentLength

RE: Content length

2003-10-24 Thread William Bondy
browser is it? There was a big write up about this years ago over the http spec. Browsers nor Servers should be sending nor expecting non standard extra empty lines in the protocol. Wade -Original Message- From: William Bondy [mailto:[EMAIL PROTECTED] Sent: Friday, October 24, 2003 4:33 PM

RE: Content length

2003-10-24 Thread William Bondy
Can the client handle chunked encoding? Then you don't need to set content-length at all. Jeff Jackson On Fri, 24 Oct 2003, William Bondy wrote: I have a client browser that acts a bit in a non-standard fashion, for http responses with content-length set (keep-alive) it expects the content

Apache proxy question

2003-10-27 Thread William Bondy
I'm a newbie to apache/tomcat intergration. A couple of questions: 1) Can apache run in a proxy mode and still forward requests to Tomcat? 2) If it can, does apache send requests to Tomcat as if Tomcat is part of the proxy server (ie. absolute URL) or an origin server (ie. relative URL), I