Won Jun Bae
Won Jun Bae

Reputation: 5389

java.net.ConnectException: General SSLEngine problem

I'm getting "java.net.ConnectException: General SSLEngine problem"

   import play.api.libs.ws._

   ws.url("https://bacd.com")
     .withFollowRedirects(true)           
     .get

However, it works with all other URLs I've tried. What is the root cause of the exception?

Upvotes: 0

Views: 4281

Answers (1)

Amit Prasad
Amit Prasad

Reputation: 725

Please check the Default SSLContext is set to true. ssl-config.default = true or you can have a look on SSL-Config here https://lightbend.github.io/ssl-config/WSQuickStart.html `

Upvotes: 2

Related Questions