ridc java code to call content checkin over https
We have java/ridc code works fine with http, we have content server configured with https. from the browser using https we can check in content.
Environemnt : WebCenter Content 12g
below is snippet of code we see in sample code for check in conntent over https
// Create a new IdcClient Connection using https protocol
IdcClient idcClient = manager.createClient ("https://localhost:16201/cs/idcplg"); //NEW
idcClient.getConfig().setProperty ("http.library", RIDCHttpConstants.HttpLibrary.apache4.name());
System.setProperty("javax.net.ssl.trustStore", "/home/oracle/jks/TrustMyOwnSelf.jks");
System.setProperty("javax.net.ssl.trustStorePassword","welcome1");
could you please help, how can we implement ridc call over https