Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-dev] NullPointerException in SslSocketConnector

We got a NullPointerException when we use an SslSocketConnector 

This worked in Jetty 7.1.4, but not in Jetty 7.4.0. 
We have narrowed it down to the SslSocketConnector and specifically the newServerSocket method. 
In Jetty 7.1.4, it is checked if _context == null and if it is, a new SSLContext is created. 
In Jetty 7.4.0 this check is not there anymore so the SSLContext is not created and thus an NPE is thrown because of this. 

Thanks,
Guy





Back to the top