I guess I am trying to understand how SSL works, I have grails based application as part of application process we have to open "https" connection to a 3rd party application. But running into following exception
"sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target"
Though connection to the URL works fine but error happens when I try to open input Stream for reading data. Question is if there is certificate problem shouldn't I have problem while opening connection ? code snippet is attached
try{
URL url= new URL("https://.../..")
def c = url.openConnection()
println("connection successful with Merchant")
def result = c.inputStream.text?.trim() // results in error
println(result)
}
catch (Exception exp){
println("error !!!")
println(exp.getMessage())
}