Reputation: 4223
I have opened a SSLServerSocket which is created from a SSLContext object which gets loaded with a truststore and keystore. In addition to that, I also have a separate editor program which edits the keystore, i.e. add/remove certificates, etc. In the event that the keystore or truststore changes, is there a way to load it to the SSLServerSocket without closing it and creating a new one.
sslContext.init( keyManagerFactory.getKeyManagers(), trustManagerFactory.getTrustManagers(), null );
serverSocket = ( SSLServerSocket ) sslContext.getServerSocketFactory().createServerSocket( getPort() );
serverSocket.setNeedClientAuth( true );
Upvotes: 2
Views: 235
Reputation: 310985
No there isn't, but closing it and quickly opening a new one shouldn't hurt you. Clients that try to connect in the interim will get connection failures, ditto any pending clients in the backlog queue, but you should be able to get it all done in a second or less.
Upvotes: 2