Hi everyone,
I’m currently facing persistent SSL issues when trying to install the Axon Ivy Portal (12.0.7) or other market artifacts from within the Axon Ivy Designer.
Here’s what I’ve done so far — maybe someone can spot what’s still missing:
🔍 Environment
Axon Ivy Designer 12.0.7
Windows 10
Company network with proxy and SSL interception
Proxy host: proxy01.company.local:8080
❗ The Problem
Whenever I try to install the Portal, I get this error:
PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException:
unable to find valid certification path to requested target
🧰 Steps I Already Tried
Exported all related SSL certificates from my browser:
proxy-root.crt (company root CA)
DE51977X_PA_SUB.crt (intermediate)
DE51977XS10000.crt (root)
maven.axonivy.com
developer.axonivy.com
*.axonivy.com (wildcard)
Imported them all into the Designer’s JRE keystore using keytool:
I confirmed they are visible with:
keytool -list -v -keystore ... | find "axonivy"
→ All certificates are listed.
Restarted the Designer each time after import.
Also configured the proxy in the AxonIvyDesigner.ini:
-Dhttp.proxyHost=proxy01.company.local
-Dhttp.proxyPort=8080
-Dhttps.proxyHost=proxy01.company.local
-Dhttps.proxyPort=8080
-Dhttp.nonProxyHosts=localhost|127.0.0.1
✅ Current Situation
Maven builds from the command line now work successfully
(mvn clean install runs without PKIX errors).
However, the Axon Ivy Designer still throws SSL handshake errors when I try to install the Portal via
Help → Install Axon Ivy Add-ons.
💭 Question
Is there an additional trust store or specific configuration that the Designer uses (separate from its JRE/cacerts) for Market communication?
Or is there another known step required for environments with SSL interception (corporate proxies)?
Any hint would be appreciated — I’ve followed the Resolving SSL Certificate Issues
guide by Elio Di Puma step by step, but the Designer still doesn’t trust the Axon Ivy Market.
Thanks in advance 🙏