Sto effettuando l'integrazione con un account commerciante denominato CommWeb e sto inviando un messaggio SSL al proprio URL (https://migs.mastercard.com.au/vpcdps). Quando provo a inviare il messaggio, ottengo la seguente eccezione:Creazione percorso PKIX non riuscita durante la connessione SSL
sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
Il codice (che non ho scritto, e che già esiste nel nostro codice di base) che esegue il post è:
public static HttpResponse sendHttpPostSSL(String url, Map<String, String> params) throws IOException {
PostMethod postMethod = new PostMethod(url);
for (Map.Entry<String, String> entry : params.entrySet()) {
postMethod.addParameter(entry.getKey(), StringUtils.Nz(entry.getValue()));
}
HttpClient client = new HttpClient();
int status = client.executeMethod(postMethod);
if (status == 200) {
StringBuilder resultBuffer = new StringBuilder();
resultBuffer.append(postMethod.getResponseBodyAsString());
return new HttpResponse(resultBuffer.toString(), "");
} else {
throw new IOException("Invalid response code: " + status);
}
}
La documentazione per l'integrazione dell'account commerciante non dice nulla sui certificati. Hanno fatto fornire qualche esempio di codice JSP che sembra accettare ciecamente certificati:
<%! // Define Static Constants
// ***********************
public static X509TrustManager s_x509TrustManager = null;
public static SSLSocketFactory s_sslSocketFactory = null;
static {
s_x509TrustManager = new X509TrustManager() {
public X509Certificate[] getAcceptedIssuers() { return new X509Certificate[] {}; }
public boolean isClientTrusted(X509Certificate[] chain) { return true; }
public boolean isServerTrusted(X509Certificate[] chain) { return true; }
};
java.security.Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
try {
SSLContext context = SSLContext.getInstance("TLS");
context.init(null, new X509TrustManager[] { s_x509TrustManager }, null);
s_sslSocketFactory = context.getSocketFactory();
} catch (Exception e) {
e.printStackTrace();
throw new RuntimeException(e.getMessage());
}
}
...
...
// write output to VPC
SSLSocket ssl = (SSLSocket)s_sslSocketFactory.createSocket(s, vpc_Host, vpc_Port, true);
ssl.startHandshake();
os = ssl.getOutputStream();
// get response data from VPC
is = ssl.getInputStream();
...
...
%>
nostra webapp ha un archivio di chiavi, e ho provato ad aggiungere il certificato (che ho esportato da Firefox) utilizzando il comando keytool
, ma che non ha lavoro e ho ottenuto lo stesso errore. Ho provato soluzioni sul web (importando la chiave e usando System.setProperty
) ma sembra un po 'goffo e non ha funzionato (mi ha dato un NoSuchAlgorithmError
). Qualsiasi aiuto è apprezzato!
http://stackoverflow.com/questions/21076179/pkix-path-building-failed-and-unable-to-find-valid-certification-path-to-requ/36427118#36427118 – MagGGG