I want to force java existing program in jdk 1.5 to use tls in place of sslv2 or sslv3.
The jdk 1.5 support tls 1.0... but generally default use ssl v2 or v3 clienthello in place of tlsv1...
For now many ssl service are forcing tls only (some now force tls 1.2... but is another subject...)...
On jdk 1.6 you can add a javaagent that set SSLContext.setDefault to force tlsV1...
But on jdk 1.5 there no SSLContext.setDefault equivalent...
Normally java program use SSLContext.getInstance("SSL") to make ssl connection... i'm not expert on coding javaagent but in searching to know how to transform SSLContext.getInstance with value SSLv2, SSLv3, SSL to TLS or TLSv1...