RE: Microsoft Certificate Services

2003-11-06 Thread Manty, George
Try selecting Base64 encoded certificate instead of DER encoded. Also from what I understand keytool will only import certificates with a key size under 4096 bits. If your certificate's public key is 4096 bits or bigger you won't be able to import into your keystore with keytool. George

Problem with Tomcat SSL Port

2003-10-14 Thread Manty, George
I am having a problem with embedded Tomcat 4.1.18. The problem is that after some unspecified period of time Tomcat is continually opening http processor threads that are then stuck in the CLOSE_WAIT state. I am seeing this intermittently in Windows, HP-UX and Linux. I am using the

RE: Receiving Transfer-coding: chunked

2003-10-14 Thread Manty, George
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] Sent: Tuesday, October 14,

RE: Receiving Transfer-coding: chunked

2003-10-14 Thread Manty, George
thread reading the socket can read the exact number of content bytes and not block unnecesarily AND that this is standard across all servlet compliant engines. Thanks for your help! Bill. -Original Message- From: Manty, George [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2003

RE: Problem with Tomcat SSL Port

2003-10-14 Thread Manty, George
I found the source code for v4.1.27 and the same problem exists in the threadpool code. Thanks, George -Original Message- From: Manty, George [mailto:[EMAIL PROTECTED] Sent: Tuesday, October 14, 2003 9:03 AM To: [EMAIL PROTECTED] Subject: Problem with Tomcat SSL Port I am having

RE: Can't get Servlet Inputstream

2003-02-20 Thread Manty, George
installation is good by running the examples? Yoav Shapira Millennium ChemInformatics -Original Message- From: Manty, George [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 19, 2003 2:48 PM To: Tomcat Users List Subject: Can't get Servlet Inputstream I am converting a servlet from using

RE: Can't get Servlet Inputstream

2003-02-20 Thread Manty, George
the InputStream from a Servlet once servlets just write text to client´s browser. And besides, what are you expecting to get from InputStream? To get FORM parameters and cookies and related things from client side you must call resquest methods. -- De: Manty, George[SMTP:[EMAIL PROTECTED

Can't get Servlet Inputstream

2003-02-19 Thread Manty, George
I am converting a servlet from using Jigsaw's Servlet methods to Tomcat's and I am curious why calling getInputstream on the request in Tomcat returns null. This calls works fine in Jigsaw receiving the same XML data, but returns null in Tomcat. Any help would be appreciated. Below is a

RE: Can't get Servlet Inputstream

2003-02-19 Thread Manty, George
? Yoav Shapira Millennium ChemInformatics -Original Message- From: Manty, George [mailto:[EMAIL PROTECTED]] Sent: Wednesday, February 19, 2003 2:48 PM To: Tomcat Users List Subject: Can't get Servlet Inputstream I am converting a servlet from using Jigsaw's Servlet methods to Tomcat's and I

How do you get auto-deploy to work right using embedded Tomcat

2003-01-30 Thread Manty, George
I have used a variation of the embedded tomcat example code from the onjava site (http://www.onjava.com/pub/a/onjava/2002/04/03/tomcat.html?page=1). The problem I am having is that I can not get the WAR file auto-deploy mechanism to work the way that it does in stand-alone Tomcat. The

Changing Keystore location when embedding Tomcat

2002-11-19 Thread Manty, George
I am taking advantage of the Embedded tomcat class in Tomcat 4.12 to embed tomcat in an application. I am trying to determine how to change the location of the default keystore. This is normally done by modifying the server.xml file, but since the embedded code does not use the server.xml