I use wsimport
to generate code from a particular WSDL
. I tried Java 10, it failed handshake, then I tried Java 9 and it was okay.
I watched communication using wireshark
, and the cause became clear, the server I communicated still uses TLSv1, and I guess Java 10 wsimport
no longer tolerate that (not by default at least), although 9 does.
There is nothing I can do with the server, so the question becomes how I can run Java 10 wsimport with TLSv1 tolerance?