Error ssl handshake by importing a WSDL

Hi there !

I try to create a consumer web service by importing a wsdl but I get this error :
javax.net.ssl.SSLException: Unsupported record version SSLv2Hello

What should I do ?

The current extended settings are :
watt.net.jsse.client.enabledProtocols=SSLv2Hello,TLSv1,TLSv1.1,TLSv1.2
watt.net.jsse.server.enabledProtocols=SSLv2Hello,TLSv1,TLSv1.1,TLSv1.2
watt.net.ssl.client.handshake.maxVersion=tls
watt.net.ssl.client.handshake.minVersion=sslv2
watt.net.ssl.server.handshake.maxVersion=tls
watt.net.ssl.server.handshake.minVersion=sslv2

The wsdl was generated with a JAX-WS-RI protocol and I can import the wsdl in soap UI.

Thank you for your help !

Hi Lea,

please remove SSLv2Hello from the list of protocols and set the minVersion to tls for all properties mentioned.

What is your IS version?

Regards,
Holger

Yes I echo Holger and update the IS Extended Settings and restart the IS assuming you are in the IS9.x.x version

HTH,
RMG

Yes I echo Holger and update the IS Extended Settings and restart the IS assuming you are in the IS9.x.x version

HTH,
RMG

Hi,

watt.net.jsse.client.enabledProtocols=TLSv1,TLSv1.1,TLSv1.2 
watt.net.jsse.server.enabledProtocols=TLSv1,TLSv1.1,TLSv1.2 
watt.net.ssl.client.handshake.maxVersion=tls 
watt.net.ssl.client.handshake.minVersion=tls 
watt.net.ssl.server.handshake.maxVersion=tls 
watt.net.ssl.server.handshake.minVersion=tls

Best Regards,

1 Like