https握手失败原因分析
问题:接收对方异步通知,用jdk1.8+tomcat可以收到,用jdk1.6+weblogic10g收不到信息。

分析:
使用tcpdump抓包,Wireshark解析文件
tcpdump -i eth3 -nn -XX -vvv port 443 -w /tmp/weblogic2.cap
tcpdump -i eth3 -nn -XX -vvv port 443 -w /tmp/tomcat2.cap

tomcat日志中显示Client Hello
客户端请求的TLS协议版本是TLSv1.2
jdk1.8可以正确握手
https握手失败原因分析

weblogic日志中显示
客户端请求TLSv1.2
服务端只支持TLS1版本,返回
TLSv1 Record Layer: Alert (Level: Fatal, Description: Handshake Failure)
https握手失败原因分析

JDK支持版本
https握手失败原因分析

相关文章:

  • 2021-10-17
  • 2020-04-21
  • 2021-12-15
  • 2022-12-23
  • 2021-11-02
  • 2021-05-26
  • 2022-01-29
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-29
  • 2022-03-08
  • 2021-09-12
  • 2021-12-15
相关资源
相似解决方案