I want to connect to a soap-webservice
thatis accessed via https
and provides a SSL-Server-Certificate TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS 1.2
.
Via webbrowser, I'm asked to accept the certificate before I can view the wsdl.
How can I implement this in java, using cxf 3
and spring 4
?
Probably it has to do with HTTPConduit
and TLSClientParameters
? But I don't have any client certificate I could provide.
I cannot use xml-configuration files, it must be possible programmatically.