Forum Discussion
markholster
11 years agoNew Contributor
Hi,
I've managed to fix this issue for version 5.0.0. Unfortunately the fix needs a code change, so I can't provide a workaround. Line 273 of class com.eviware.soapui.impl.wsdl.support.http.SoapUISSLSocketFactory needs to be changed form
"SSLSocket sslSocket = ( SSLSocket )getSocketFactory().createSocket( socket, host, port, autoClose );"
to
"SSLSocket sslSocket = ( SSLSocket )sslContext.getSocketFactory().createSocket( socket, host, port, autoClose );"
That's it.
For those who want to test with this change I've provided the class (and inner class) as attachment. Remove the .txt extension and replace the file in bin\soapui-5.0.0.jar and you're good to go.
Cheers!
Mark
I've managed to fix this issue for version 5.0.0. Unfortunately the fix needs a code change, so I can't provide a workaround. Line 273 of class com.eviware.soapui.impl.wsdl.support.http.SoapUISSLSocketFactory needs to be changed form
"SSLSocket sslSocket = ( SSLSocket )getSocketFactory().createSocket( socket, host, port, autoClose );"
to
"SSLSocket sslSocket = ( SSLSocket )sslContext.getSocketFactory().createSocket( socket, host, port, autoClose );"
That's it.
For those who want to test with this change I've provided the class (and inner class) as attachment. Remove the .txt extension and replace the file in bin\soapui-5.0.0.jar and you're good to go.
Cheers!
Mark
Related Content
- 10 years ago
Recent Discussions
- 22 days ago