I have a requirement where is have to implement tls, I know how to make my server tls enabled using tomcat, but have no idea how to make a tls call from within java code.
I have an application which is running on web server(tomcat) which supports tls1.0, 1.1 and 1.2 and sslv3. From this application i have to call 2 web service, one is running on TLS1.0 and the other supports only sslv3.
How can my code connect to this 2 web service which runs on 2 different protocol.
Regards,