I am using java 1.6.
I have setup my tomcat as my ssl
enabled server. And i have setup a ssl enabled client (java code). When i do a communication from my client to server. In java ssl dump in tomcat logs, I always see TLSv1
picked as SSL protocol version by both my client and server. Is there a way i can switch between SSLv3
and TLSv1
protocols for secure connection? How can i make a client server communication using SSLv3
?
Thanks in advance!