Is anyone using Fiddler successfully to capture requests and responses from their Java application to API-NG?
If so, could you share your configuration?
I've switched on "Decrypt HTTPS traffic" in the Fiddler config, then imported the root certificate successfully using the command:
keytool.exe -import -file FiddlerRoot.cer -keystore FiddlerKeyStore -alias Fiddler
Then I set the JVM options as follows:
-DproxySet=true
-DproxyHost=127.0.0.1
-DproxyPort=8888
-Djavax.net.ssl.trustStore=<path\to\FiddlerKeystore >
-Djavax.net.ssl.trustStorePassword=<Keystore Password>
The error I'm getting when I try and run my application is:
"javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderE xception: unable to find valid certification path to requested target"
If so, could you share your configuration?
I've switched on "Decrypt HTTPS traffic" in the Fiddler config, then imported the root certificate successfully using the command:
keytool.exe -import -file FiddlerRoot.cer -keystore FiddlerKeyStore -alias Fiddler
Then I set the JVM options as follows:
-DproxySet=true
-DproxyHost=127.0.0.1
-DproxyPort=8888
-Djavax.net.ssl.trustStore=<path\to\FiddlerKeystore >
-Djavax.net.ssl.trustStorePassword=<Keystore Password>
The error I'm getting when I try and run my application is:
"javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderE xception: unable to find valid certification path to requested target"


Comment