Re: Reusing SSL-sessions...

2002-07-08 Thread Scott Nichol
> Thanks for the useful experiment. It seems to me that if we were > to implement HTTP 1.1 keep-alive then this problem would go away, > right? That is, if the same TCP connection is used for a series > of requests then not its not an issue, right? I altered the sample I was running to include a

Re: Reusing SSL-sessions...

2002-07-07 Thread Niclas Hedhman
On Sunday 07 July 2002 07:45, Sanjiva Weerawarana wrote: > Hi Scott, > > Thanks for the useful experiment. It seems to me that if we were > to implement HTTP 1.1 keep-alive then this problem would go away, > right? That is, if the same TCP connection is used for a series > of requests then not its

Re: Reusing SSL-sessions...

2002-07-06 Thread Sanjiva Weerawarana
t;[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 06, 2002 9:45 AM Subject: Re: Reusing SSL-sessions... > Here are some results I got looking into SSL sessions. Using JDK 1.3.1_01 > with JSSE 1.0.3 on Win2k, I changed the SSLSocketClient sample to loop 10 > times.

Re: Reusing SSL-sessions...

2002-07-05 Thread Niclas Hedhman
On Friday 05 July 2002 23:39, Leif Nilsson TACMa wrote: > It might very well be that I have to study the server configuration. > As I use it at the moment (one new fresh SSL-session for each call) > I don't see how it comes in to play however. No wonder you said "a bit slow" in the private email

Re: Reusing SSL-sessions...

2002-07-05 Thread Scott Nichol
Here are some results I got looking into SSL sessions. Using JDK 1.3.1_01 with JSSE 1.0.3 on Win2k, I changed the SSLSocketClient sample to loop 10 times. I ran the app with -Djavax.net.debug=ssl,handshake,session. The debug output showed that a total of 6 sessions were created to perform the 1

Re: Reusing SSL-sessions...

2002-07-05 Thread Scott Nichol
Is there a way to reuse the SSL-session for several SOAP-Calls ? As I've stated before it seems that soap over SSL sooner or later just fails. By activating the system property javax.net.debug (JSSE) it is clear that two independant sessions are created for each Call/SOAPHttpConnection. <<

RE: Reusing SSL-sessions...

2002-07-05 Thread Leif Nilsson TACMa
. /Leif -Original Message- From: Sanjiva Weerawarana [mailto:[EMAIL PROTECTED]] Sent: Friday, July 05, 2002 17:13 To: [EMAIL PROTECTED] Subject: Re: Reusing SSL-sessions... Did you mean to say "timeout the connection" and not "timeout the session"?? If you did mean it,

Re: Reusing SSL-sessions...

2002-07-05 Thread Sanjiva Weerawarana
anism to use HTTP session support. Sanjiva. - Original Message - From: "Niclas Hedhman" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 05, 2002 7:32 AM Subject: Re: Reusing SSL-sessions... > On Thursday 04 July 2002 23:50, Sanjiva Weerawarana wrote: &g

Re: Reusing SSL-sessions...

2002-07-05 Thread Scott Nichol
02 9:32 PM Subject: Re: Reusing SSL-sessions... > On Thursday 04 July 2002 23:50, Sanjiva Weerawarana wrote: > > You should just re-use the Call object to hold a session. See > > the addressbook2 sample for an example. > > And I assume that if you don't do a call within

Re: Reusing SSL-sessions...

2002-07-05 Thread Niclas Hedhman
On Thursday 04 July 2002 23:50, Sanjiva Weerawarana wrote: > You should just re-use the Call object to hold a session. See > the addressbook2 sample for an example. And I assume that if you don't do a call within a reasonable time period, it will timeout the connection. Niclas -- To unsubscrib

Re: Reusing SSL-sessions...

2002-07-04 Thread Sanjiva Weerawarana
You should just re-use the Call object to hold a session. See the addressbook2 sample for an example. Sanjiva. - Original Message - From: "Leif Nilsson TACMa" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 04, 2002 7:03 PM Subject: Reusing

Reusing SSL-sessions...

2002-07-04 Thread Leif Nilsson TACMa
Hi, Is there a way to reuse the SSL-session for several SOAP-Calls ? As I've stated before it seems that soap over SSL sooner or later just fails. By activating the system property javax.net.debug (JSSE) it is clear that two independant sessions are created for each Call/SOAPHttpConnection. A