Looks like Jetty supports "hot loading" of the keystore used for HTTPS connections (necessary when trying to update certificate without having to stop/start the whole server process). In order to implement this though, I would either need access to the private sslFactory variable of jServer or (jReflection does not work in a non-JavaFX environment) a new method provided by jServer that would just reload the keystore (no logistics needed as to why and can be bare bones of just reloading existing keystore w/o changing paths/passwords).
Links:
1) https://github.com/eclipse/jetty.pr...e/jetty/util/ssl/SslContextFactory.java#L1877
This link shows the method of SslContextFactory that I would try to use (or have implemented)
2) https://www.b4x.com/android/forum/threads/solved-abmaterial-using-https-secure.104818/post-802622
Where this all started
Links:
1) https://github.com/eclipse/jetty.pr...e/jetty/util/ssl/SslContextFactory.java#L1877
This link shows the method of SslContextFactory that I would try to use (or have implemented)
2) https://www.b4x.com/android/forum/threads/solved-abmaterial-using-https-secure.104818/post-802622
Where this all started