Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] catching SSLHandShakeExceptions in HttpClient

This configuration ...
 
        SslContextFactory ssl = new SslContextFactory();

        ssl.setExcludeProtocols(".*");
        ssl.setIncludeProtocols();
        ssl.setIncludeCipherSuites();
        ssl.setExcludeCipherSuites(".*");

Excludes all protocols and cipher suites.
You have nothing left to connect with.

Simone, has the request even started in this situation?

- Joakim

Back to the top