2013-11-02 2 views
0

사용자/암호 인증이 필요한 웹 사이트에서 xml 파일을 다운로드하려고합니다. 수동으로 브라우징하는 것은 물론 아무런 문제가 없습니다. 팝업 창에 사용자/비밀번호를 삽입해야하지만 여기에서는 자동으로 수행되기를 원합니다. 내가HTTPS 인증 오류

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 
at sun.security.ssl.Alerts.getSSLException(Alerts.java:192) 
at sun.security.ssl.SSLSocketImpl.fatal(SSLSocketImpl.java:1886) 
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:276) 
at sun.security.ssl.Handshaker.fatalSE(Handshaker.java:270) 
at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1341) 
at sun.security.ssl.ClientHandshaker.processMessage(ClientHandshaker.java:153) 
at sun.security.ssl.Handshaker.processLoop(Handshaker.java:868) 
at sun.security.ssl.Handshaker.process_record(Handshaker.java:804) 
at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:1016) 
at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1312) 
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1339) 
at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1323) 
at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:515) 
at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185) 
at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1299) 
at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(HttpsURLConnectionImpl.java:254) 
at java.net.URL.openStream(URL.java:1037) 
at org.apache.commons.io.FileUtils.copyURLToFile(FileUtils.java:1460) 
at xmlModifier.main(xmlModifier.java:146) 
Caused by: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target 
at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:385) 
at sun.security.validator.PKIXValidator.engineValidate(PKIXValidator.java:292) 
at sun.security.validator.Validator.validate(Validator.java:260) 
at sun.security.ssl.X509TrustManagerImpl.validate(X509TrustManagerImpl.java:326) 
at sun.security.ssl.X509TrustManagerImpl.checkTrusted(X509TrustManagerImpl.java:231) 
at sun.security.ssl.X509TrustManagerImpl.checkServerTrusted(X509TrustManagerImpl.java:126) 
at sun.security.ssl.ClientHandshaker.serverCertificate(ClientHandshaker.java:1323) 
Caused by: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target 
at sun.security.provider.certpath.SunCertPathBuilder.engineBuild(SunCertPathBuilder.java:196) 
at java.security.cert.CertPathBuilder.build(CertPathBuilder.java:268) 
at sun.security.validator.PKIXValidator.doBuild(PKIXValidator.java:380) 

아무도 도울 수있는 예외를 얻을 그러나 이것은 내 코드

Authenticator.setDefault(new Authenticator() { protected PasswordAuthentication getPasswordAuthentication() { return new PasswordAuthentication("[email protected]", "mypassword".toCharArray()); } });  
try { 
    URL testURL=new URL("testingURL"); 
    try { 
    FileUtils.copyURLToFile(testURL, dest); 
} catch (IOException e) { 
     e.printStackTrace(); 
     } 
} catch (MalformedURLException e) { 
     e.printStackTrace(); 
} 

입니까?

+0

프레임 워크 란 무엇입니까? 난 단지 파일을 다운로드하기 위해 http://stackoverflow.com/questions/955624/download-a-file-from-the-internet-using-java-how-to-authenticate에 주어진 답을 구현하려하고있다. ... – splinter123

답변

0

서버는 서버 측 SSL 인증서를 사용합니다. 인증서를 다운로드하여 로컬 트러스트 스토어에 설치하거나 SSLContext를 패치하여 모든 인증서를 수락 할 수 있습니다 (자세한 내용은 Google, 수년 전에이 작업을 수행했습니다). 클라이언트 인증서와 달리 서버 인증서는 클라이언트 (사용자)가 서버의 고유성을 검증 할 수있게하므로 "항상 신뢰"할 수 있습니다.