2013-08-01 3 views
1

클라이언트 응용 프로그램이 내 보안 웹 서비스에서 리소스를 요청하려고하면 아래 오류가 붙여집니다.저지 클라이언트 핸드 셰이크 오류

주제에 대한 답변을 찾았지만 추가 코드가 극단적으로 보입니다. Accessing secure restful web services using jersey client 누구든지 문제를 해결하는 더 간단한 방법을 알고 있습니까?

내 프로젝트 : 서버 측에서는 브라우저에서 사용할 때 잘 동작하는 jdbc 영역을 사용하는 기본 인증을 사용하고 있습니다. 클라이언트 측에서는 사용자 이름과 암호를 올바르게 설정하고 요청을 보낼 때 오류가 발생합니다. 코드 스 니펫이 필요한 경우 요청하십시오. 시간 내 주셔서 감사합니다.

Aug 01, 2013 7:00:09 PM com.sun.jersey.api.client.filter.LoggingFilter log 
INFO: 1 * Client out-bound request 
1 > GET https://localhost:8080/HelloWorld/resources/helloWorld 
1 > Accept: text/html 
1 > Authorization: Basic ZGF2aWQ6bXVycmF5 

Exception in thread "AWT-EventQueue-0" com.sun.jersey.api.client.ClientHandlerException: javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake 
    at com.sun.jersey.client.urlconnection.URLConnectionClientHandler.handle(URLConnectionClientHandler.java:149) 
    at com.sun.jersey.api.client.filter.LoggingFilter.handle(LoggingFilter.java:183) 
    at com.sun.jersey.api.client.filter.HTTPBasicAuthFilter.handle(HTTPBasicAuthFilter.java:81) 
    at com.sun.jersey.api.client.Client.handle(Client.java:648) 
    at com.sun.jersey.api.client.WebResource.handle(WebResource.java:670) 
    at com.sun.jersey.api.client.WebResource.access$200(WebResource.java:74) 
    at com.sun.jersey.api.client.WebResource$Builder.get(WebResource.java:503) 
    at secure_rest_hello_client.rest_secure_client.getXml(rest_secure_client.java:42) 
    at secure_rest_hello_client.test_client.jButton1ActionPerformed(test_client.java:72) 
    at secure_rest_hello_client.test_client.access$000(test_client.java:11) 
    at secure_rest_hello_client.test_client$1.actionPerformed(test_client.java:39) 
    at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:2018) 
    at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2341) 
    at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:402) 
    at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:259) 
    at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:252) 
    at java.awt.Component.processMouseEvent(Component.java:6505) 
    at javax.swing.JComponent.processMouseEvent(JComponent.java:3321) 
    at java.awt.Component.processEvent(Component.java:6270) 
    at java.awt.Container.processEvent(Container.java:2229) 
    at java.awt.Component.dispatchEventImpl(Component.java:4861) 
    at java.awt.Container.dispatchEventImpl(Container.java:2287) 
    at java.awt.Component.dispatchEvent(Component.java:4687) 
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4832) 
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4492) 
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4422) 
    at java.awt.Container.dispatchEventImpl(Container.java:2273) 
    at java.awt.Window.dispatchEventImpl(Window.java:2713) 
    at java.awt.Component.dispatchEvent(Component.java:4687) 
    at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:707) 
    at java.awt.EventQueue.access$000(EventQueue.java:101) 
    at java.awt.EventQueue$3.run(EventQueue.java:666) 
    at java.awt.EventQueue$3.run(EventQueue.java:664) 
    at java.security.AccessController.doPrivileged(Native Method) 
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76) 
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:87) 
    at java.awt.EventQueue$4.run(EventQueue.java:680) 
    at java.awt.EventQueue$4.run(EventQueue.java:678) 
    at java.security.AccessController.doPrivileged(Native Method) 
    at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76) 
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:677) 
    at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:211) 
    at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:128) 
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:117) 
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:113) 
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:105) 
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:90) 
Caused by: javax.net.ssl.SSLHandshakeException: Remote host closed connection during handshake 
    at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:912) 
    at sun.security.ssl.SSLSocketImpl.performInitialHandshake(SSLSocketImpl.java:1294) 
    at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1321) 
    at sun.security.ssl.SSLSocketImpl.startHandshake(SSLSocketImpl.java:1305) 
    at sun.net.www.protocol.https.HttpsClient.afterConnect(HttpsClient.java:523) 
    at sun.net.www.protocol.https.AbstractDelegateHttpsURLConnection.connect(AbstractDelegateHttpsURLConnection.java:185) 
    at sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1296) 
    at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:468) 
    at sun.net.www.protocol.https.HttpsURLConnectionImpl.getResponseCode(HttpsURLConnectionImpl.java:338) 
    at com.sun.jersey.client.urlconnection.URLConnectionClientHandler._invoke(URLConnectionClientHandler.java:240) 
    at com.sun.jersey.client.urlconnection.URLConnectionClientHandler.handle(URLConnectionClientHandler.java:147) 
    ... 46 more 
Caused by: java.io.EOFException: SSL peer shut down incorrectly 
    at sun.security.ssl.InputRecord.read(InputRecord.java:352) 
    at sun.security.ssl.SSLSocketImpl.readRecord(SSLSocketImpl.java:893) 
    ... 56 more 
+0

https 대신 http를 사용하고 있습니다. – David031

답변

0

SSL 연결이 전혀 설정되지 않았습니다. SSL 연결을 설정하기위한 핸드 셰이 킹 절차가 실패했습니다. * https 리스너 포트에서 비 -SSL 요청 (http)을 수행하는 경우 * 서버가 충족되지 않은 보안 검사 (예 : 클라이언트 측 인증서)에 대해 구성된 경우 * 기타 협상 관련 문제 대부분 이러한 문제는 curl 또는 openssl 명령 줄 클라이언트에서 확인할 수 있습니다. 일들이 일하는 경우에만. curl 및/또는 openssl을 사용하여 코드 (질문에 표시되지 않은 문제)를보고 싶을 수도 있습니다.