Tuesday, September 18, 2007

Compile error BPEL against SSL

If you compile a BPEL proces that is using partner links based on SSL. You run into an compile error:

ValidatorException: PKIX path building failed

This can be solved by importing the certificate form the server into your local key store. This is the keystore from which JDeveloper is started.

Make sure that you apply this also on the SOA Suite server. The BPEL process is deployed and compiled again on the server.

cd [jdevhome]\jdk\jre\lib\security
..\..\bin\keytool.exe -import -file "Vijfhuizen.cer"
-keystore cacerts -storepass changeit -alias myRootCA

Owner: O=Vijfhuizen, C=Issuer: O=Vijfhuizen, C=com
Serial number: 1
Valid from: Mon Sep 21 08:00:00 CET 2007
until: Thu Feb 28 20:00:34 CET 2012
Certificate fingerprints:
MD5:
XX:XX:XX:XX:XX:XX:XX:XX:XX:XX
SHA1: XX:XX:XX:XX:XX:XX:XX:XX:XX:XX
Trust this certificate? [no]: yes
Certificate was added to keystore


Post a Comment