Gary,

It actually takes two to tango. Are you sure that the target server
supports persistent connections/keeps connections alive? Usually
HttpClient does a reasonably good job reusing persistent connections.

Please consider generating the wire/context log to find as to why the
connection needs to be renegotiated. 

http://jakarta.apache.org/commons/httpclient/logging.html

Oleg


On Mon, 2004-11-22 at 22:47 +0100, Gary hendrix Clapton wrote:
> Hi all,
> 
> I'm trying to develop a ssl client-server.
> 
> - I need to send all messages within the same
> connection to obtain only 1 ssl negotiation, and all
> messages (executeMethod(post) instances) must share
> this link and don't negotiate ssl for each of them.
> 
> - Now I have done this for each message
> (Login,Logout):
> HttpClient client = new HttpClient();
> PostMethod post = new PostMethod();
> ...
> client.executeMethod(post);
> 
> but, when I send firstly Login and secondly
> Logout...it sends them from different ports, so there
> are 2 ssl negotiations.
> 
> I would appreciate any help.
> 
> 
>       
>       
>               
> ______________________________________________
> Renovamos el Correo Yahoo!: �100 MB GRATIS!
> Nuevos servicios, m�s seguridad
> http://correo.yahoo.es
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to