I think by installing the .cer file, you installed the "public" part of the
client certificate. A .cer file is supposed to contain the publicly
distributable portion of the client certificate.
The browsers need the "private" part. That's why it's called a "client
certificate". You import the
List
Subject: Re: Help with a Tomcat issue???
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
Jason,
On 4/6/2009 6:33 PM, Jason Smith wrote:
> Sun's implementation of HttpURLConnector apparently creates a new
> ChunkedOutputStream every time you call .getOutputStream().
That's obn
Will do.
-Original Message-
From: Mark Thomas [mailto:ma...@apache.org]
Sent: Tuesday, April 07, 2009 8:15 AM
To: Tomcat Users List
Subject: Re: Help with a Tomcat issue???
Jason Smith wrote:
> As follow-up, I guess I would have to count this as a core Java API bug,
> since th
esday, April 07, 2009 2:40 AM
To: Tomcat Users List
Subject: Re: Help with a Tomcat issue???
Jason Smith wrote:
> Solved. You gave me a clue that helped solve it, though Tomcat could handle
> this better (not put '0 POST' in for the method name in the first place).
>
&
First of all, I recommend you don't use 5.5.26. There was a known buffering
issue with that version that is fixed in 5.5.27. If I remember correctly, the
input stream of the request in a servlet was truncated at 8192 bytes.
As for your original question, are you posting streaming data (large
JK connector. :-)
-Original Message-
From: Jason Smith [mailto:jsm...@infotrustgroup.com]
Sent: Monday, April 06, 2009 1:28 PM
To: Tomcat Users List
Subject: RE: Help with a Tomcat issue???
Just Tomcat, no proxy.
And I agree, that isn't the way you'd want to fix it ultimately
I'll see if I can set up a working example. And I didn't mean to say "proxy,"
not that there is one. We aren't using JK connector. :-)
-Original Message-
From: Jason Smith [mailto:jsm...@infotrustgroup.com]
Sent: Monday, April 06, 2009 1:28 PM
To: Tomcat Use
-Original Message-
From: Mark Thomas [mailto:ma...@apache.org]
Sent: Monday, April 06, 2009 1:18 PM
To: Tomcat Users List
Subject: Re: Help with a Tomcat issue???
Jason Smith wrote:
> I have intercepted the socket InputStream (in Http11BaseProtocol) and looked
> at the data coming in. It is
).
Is this a problem with downstream code, which has a responsibility to consume
every byte in the input stream? Or is it bad code in nextRequest(), which
really should not be taking the tail of one request and appending it to the
next? Or is it something else?
Thanks! See below for more info