From 09ad8e6bb7e505713d7d77e9efb7c0c0db77f095 Mon Sep 17 00:00:00 2001 From: anttil <anttil> Date: Tue, 6 Oct 2015 05:41:02 +0000 Subject: [PATCH] SSDM-2259: Set keystore path in HttpInvokerUtils SVN: 34788 --- .../java/ch/systemsx/cisd/common/spring/HttpInvokerUtils.java | 1 + 1 file changed, 1 insertion(+) diff --git a/common/source/java/ch/systemsx/cisd/common/spring/HttpInvokerUtils.java b/common/source/java/ch/systemsx/cisd/common/spring/HttpInvokerUtils.java index 547ca2813cc..995267e9513 100644 --- a/common/source/java/ch/systemsx/cisd/common/spring/HttpInvokerUtils.java +++ b/common/source/java/ch/systemsx/cisd/common/spring/HttpInvokerUtils.java @@ -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) -- GitLab