Integruję się z kontem handlowym o nazwie CommWeb i wysyłam post SSL na adres URL (https://migs.mastercard.com.au/vpcdps). Gdy próbuję wysłać wiadomość, pojawia się następujący wyjątek:Budowanie ścieżki PKIX nie powiodło się podczas nawiązywania połączenia SSL
sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
kod (który nie pisałem, a to już istnieje w naszej bazie kodu), który wykonuje post jest:
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);
}
}
Dokumentacja integracji konta Merchant nie mówi nic o certyfikatach. Zrobili zapewnić pewne przykładowy kod JSP, który wydaje się ślepo akceptować certyfikaty:
<%! // 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();
...
...
%>
Nasz webapp ma kluczy, a ja starałem dodawania certyfikatu (które eksportowany z firefox) za pomocą komendy keytool
, ale to nie działa i mam ten sam błąd. Próbowałem rozwiązania w Internecie (importowanie klucza i przy użyciu System.setProperty
), ale wydaje się, że to trochę niezgrabne i nie działa (dał mi NoSuchAlgorithmError
). Każda pomoc jest doceniana!
http://stackoverflow.com/questions/21076179/pkix-path-building-failed-and-unable-to-find-valid-certification-path-to-requ/36427118#36427118 – MagGGG