1

So I wanted to test things through https. The problem is I'm getting this:

Error getting response; javax.net.ssl.SSLException Received Fatal alert: illegal_parameter

I did some research in the web and I found that I should add to my vmoptions file this line:

-Dsun.security.ssl.allowUnsafeRenegotiation=true

so I did this. But it didn't help, still getting the same error msg.

My SoapUI version is 5.0.0. Have anyone had same problem? Any tips how to solve?

2

3 Answers 3

1

Adding those 3 lines to my *.vmoptions file resolved the problem:

-Dsun.security.ssl.allowUnsafeRenegotiation=true
-Dcom.sun.net.ssl.enableECC=false
-Djsse.enableSNIExtension=false
1

Setting below option to jvm param helped me.

set JAVA_OPTS=%JAVA_OPTS% -Dsoapui.https.protocols=TLSv1,SSLv3

https://community.smartbear.com/t5/SoapUI-NG/ReadyAPI-1-6-and-TestRunner-quot-javax-net-ssl-SSLException/td-p/114532

1

newer versions of SoapUI don't have this issue. When I upgraded to 5.4.0 this issue disappeared.

Not the answer you're looking for? Browse other questions tagged or ask your own question.