Friday, October 23, 2020

Unifier Documentation links

 https://docs.oracle.com/cd/F25628_01/index.htm

https://docs.oracle.com/cd/F25628_01/English/User_Guides/udesigner/index.html

https://docs.oracle.com/cd/F25628_01/English/admin/admin_general/index.html

https://docs.oracle.com/cd/F25628_01/English/admin/admin_modules/index.html

https://docs.oracle.com/cd/F25628_01/English/User_Guides/user_general/index.html

https://docs.oracle.com/cd/F25628_01/English/User_Guides/udesigner/index.html

https://docs.oracle.com/cd/F25628_01/English/Integration_Documentation/integration/index.html

Thursday, October 22, 2020

SSL issu

 

Issue

I see the error javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target

Resolution

This indicates the file /app/.jdk/jre/lib/security/cacerts on your dyno does not have the necessary certificates needed to trust a service you are invoking. You can customize this file by creating a .jdk-overlay/jre/lib/security/cacerts file in your repo, as describe in this Customizing the JDK on Dev Center.

Very often you can use the cacerts in your local JDK installation at $JAVA_HOME/jre/lib/security/cacerts.