RE: Keeping socket open between calls

2003-02-05 Thread Luke Galea
ECTED] Subject: RE: Keeping socket open between calls > I am finding that my attempts at writing a custom SOAP Transport are > failing as well.. so perhaps you meant the former. This is > frustrating.. Attached is HttpClientConnection.java, which is my implementation of an HTTP/1.1 A

RE: Keeping socket open between calls

2003-02-05 Thread WJCarpenter
> I am finding that my attempts at writing a custom SOAP Transport are > failing as well.. so perhaps you meant the former. This is > frustrating.. Attached is HttpClientConnection.java, which is my implementation of an HTTP/1.1 Apache SOAP 2.x transport using the HTTPClient package from

RE: Keeping socket open between calls

2003-02-05 Thread Scott Nichol
From: Scott Nichol [mailto:[EMAIL PROTECTED]] > Sent: February 5, 2003 9:57 AM > To: [EMAIL PROTECTED] > Subject: Re: Keeping socket open between calls > > Apache SOAP explicitly closes sockets after each request as it does > not support HTTP keep-alives. > > The freque

RE: Keeping socket open between calls

2003-02-05 Thread Luke Galea
Nichol [mailto:[EMAIL PROTECTED]] Sent: February 5, 2003 9:57 AM To: [EMAIL PROTECTED] Subject: Re: Keeping socket open between calls Apache SOAP explicitly closes sockets after each request as it does not support HTTP keep-alives. The frequent handshaking is, I believe, caused by JSSE or JDK 1.4

RE: Keeping socket open between calls

2003-02-05 Thread Luke Galea
To: [EMAIL PROTECTED] Subject: Re: Keeping socket open between calls Apache SOAP explicitly closes sockets after each request as it does not support HTTP keep-alives. The frequent handshaking is, I believe, caused by JSSE or JDK 1.4 marking cached sessions as stale very quickly. I have run

Re: Keeping socket open between calls

2003-02-05 Thread Scott Nichol
Apache SOAP explicitly closes sockets after each request as it does not support HTTP keep-alives. The frequent handshaking is, I believe, caused by JSSE or JDK 1.4 marking cached sessions as stale very quickly. I have run tests in which a cached SSL session is re-used anywhere from 0 to 6 times o

Keeping socket open between calls

2003-02-04 Thread Luke Galea
Hello!! I am trying to make Apache SOAP keep my ssl socket open in between calls in order to prevent un-needed handshaking.   Has anyone had success doing something similar? I am currently trying to use a custom SSLSocketFactory without much success.. perhaps a new transport would work? W