0

I am getting the following error when I try to build my app using ant & ivy

buildtools/task-gae.xml:432: 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

This code was done by a development company and I have no experience with ant nor ivy. I found this question here is this the way to fix it? The only issue is I'm not sure what port to pass from local host and also I don't know where the file would be created and I have no idea where JDK_HOME\jre\lib\security\ folder is.

Community
  • 1
  • 1
Tyler
  • 2,346
  • 6
  • 33
  • 59
  • Your build is accessing an SSL protected site that is using an untrusted certificate. It's a very common and painful problem to fix client-side. Normally I tell people to spend some money and setup the remote server with properly signed certificate. – Mark O'Connor Aug 27 '14 at 14:34
  • possible duplicate of [Resolving javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed Error?](http://stackoverflow.com/questions/9619030/resolving-javax-net-ssl-sslhandshakeexception-sun-security-validator-validatore) – Mark O'Connor Aug 27 '14 at 14:37

1 Answers1

0

I figured out this error was actually because I didn't have google app engine installed for the build. Everything seems to be working fine now.

Tyler
  • 2,346
  • 6
  • 33
  • 59