Forum Discussion

John_smith's avatar
John_smith
Occasional Contributor
8 years ago

Why I am getting javax.net.ssl.SSLException in SOAP UI Free and how to resolve this?

While making a GET method call through SOAP UI Open source I am getting the below error message, but surprisingly this is working absolutely fine in ReadyAPI.

 

Error Message:

ERROR:Exception in request: javax.net.ssl.SSLException: Received fatal alert: protocol_version
ERROR:An error occurred [Received fatal alert: protocol_version], see error log for details

 

 

2 Replies

  • KarelHusa's avatar
    KarelHusa
    Champion Level 3

    You can attach your log to provide more information, but I assume the issue can be that the target endpoint uses a version of SSL which is not supported by your SoapUI. 

     

    You can configure supported versions of SSL in your SoapUI-5.2.1.vmoptions file, by adding a line e.g.:

    -Dsoapui.https.protocols=SSLv3,TLSv1.2

     

     

    • u2busr's avatar
      u2busr
      Occasional Visitor

      This solution really helped to solve the issue. After making the suggested changes you must save and close soapUI. Reopen and try the same call and it works.

       

      Thanks KarelHusa..