You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
final SslConfig sslConfig = new SslConfig();
sslConfig.setEnabled(true);
sslConfig.setTrustStore("Path to the TrustStore");
sslConfig.setTrustStorePassword("Password of the TrustStore");
final OfficeManager manager =
RemoteOfficeManager.builder()
.urlConnection("http://path/to/myLibreOfficeOnlineServer")
.sslConfig(sslConfig)
.build();
The text was updated successfully, but these errors were encountered:
#214
and SSL support code should be
The text was updated successfully, but these errors were encountered: