通过对等方调用 soap webservice 重置连接
connection reset by peer calling soap webservice
目前正在尝试调用 Web 服务,但是我正在连接 reset/connection 由对等方重置,下面是堆栈跟踪:
WRITE: TLSv1 Handshake, length = 81
WRITE: SSLv2 client hello message, length = 110
waiting for close_notify or alert: state 1
Exception while waiting for close java.net.SocketException: Connection reset
handling exception: java.net.SocketException: Connection reset
SEND TLSv1 ALERT: fatal, description = unexpected_message
WRITE: TLSv1 Alert, length = 2
Exception sending alert: java.net.SocketException: socket write error: Connection reset by peer.
called closeSocket()
called close()
called closeInternal(true)
called close()
called closeInternal(true)
called close()
called closeInternal(true)
这是一个 SSL 问题,根据跟踪,只有客户端问候,但没有服务器问候响应,(http://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/JSSERefGuide.html) 在将服务器 public 密钥导入客户端密钥库后正在工作
目前正在尝试调用 Web 服务,但是我正在连接 reset/connection 由对等方重置,下面是堆栈跟踪:
WRITE: TLSv1 Handshake, length = 81
WRITE: SSLv2 client hello message, length = 110
waiting for close_notify or alert: state 1
Exception while waiting for close java.net.SocketException: Connection reset
handling exception: java.net.SocketException: Connection reset
SEND TLSv1 ALERT: fatal, description = unexpected_message
WRITE: TLSv1 Alert, length = 2
Exception sending alert: java.net.SocketException: socket write error: Connection reset by peer.
called closeSocket()
called close()
called closeInternal(true)
called close()
called closeInternal(true)
called close()
called closeInternal(true)
这是一个 SSL 问题,根据跟踪,只有客户端问候,但没有服务器问候响应,(http://docs.oracle.com/javase/7/docs/technotes/guides/security/jsse/JSSERefGuide.html) 在将服务器 public 密钥导入客户端密钥库后正在工作