Skip to content
Snippets Groups Projects
Commit 09ad8e6b authored by anttil's avatar anttil
Browse files

SSDM-2259: Set keystore path in HttpInvokerUtils

SVN: 34788
parent a8edb1d4
No related branches found
No related tags found
No related merge requests found
......@@ -200,6 +200,7 @@ public class HttpInvokerUtils
String trustStorePath = System.getProperties().getProperty("javax.net.ssl.trustStore");
if (trustStorePath != null)
{
sslContextFactory.setKeyStorePath(trustStorePath);
sslContextFactory.setTrustStorePath(trustStorePath);
}
HttpClient client = new HttpClient(sslContextFactory)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment