【发布时间】:2019-06-20 23:39:11
【问题描述】:
我有一个 Spring REST Web 服务,它在内部调用第三方供应商提供的 SOAP Web 服务。 SOAP Web 服务客户端是使用 CXF 生成的。自从升级到我的组织提供的更新版本的 JDK 后,我看到了以下奇怪的行为
1) 如果我通过 Web 服务器调用我的 REST 服务,在第一次成功的 SOAP 调用之后,应用程序停止响应。 Web 服务器开始出现 Bad Gateway 错误。
a) 此时,如果我调用应用服务器,则它不会响应。 Chrome 显示 SSL 协议错误,但访问日志中没有条目或 chrome 开发者工具中没有任何响应。
2) 如果我直接在应用服务器上调用我的 REST 服务,即使调用了“n”次,该服务也会按预期工作。
根据我单位提供的变更日志,变更是从JDK版本jdk1.8.0_161_iaik5.5_ecc4.02到jdk1.8.0_161_iaik5.5_ecc4.02_1。
任何指针都会有所帮助。谢谢你。如果我应该在问题中添加任何其他详细信息,请告诉我。
编辑—— 添加了一些额外的日志记录,在日志中显示了一个 decode_error
[2019-01-31T13:55:17.136-0500] [Payara 4.1] [INFO] [] [] [tid: _ThreadID=36 _ThreadName=http-thread-pool::http-listener-2(4) ] [timeMillis:1548960917136] [levelValue:800] [[ http-thread-pool::http-listener-2(4),写入:TLSv1.2 握手,长度 = 3989]]
[2019-01-31T13:55:17.138-0500] [Payara 4.1] [INFO] [] [] [tid: _ThreadID=37 _ThreadName=http-thread-pool::http-listener-2(5) ] [timeMillis:1548960917138] [levelValue:800] [[ http-thread-pool::http-listener-2(5),阅读:TLSv1.2 警报,长度 = 2]]
[2019-01-31T13:55:17.138-0500] [Payara 4.1] [INFO] [] [] [tid: _ThreadID=37 _ThreadName=http-thread-pool::http-listener-2(5) ] [timeMillis:1548960917138] [levelValue:800] [[ http-thread-pool::http-listener-2(5)]]
[2019-01-31T13:55:17.138-0500] [Payara 4.1] [INFO] [] [] [tid: _ThreadID=37 _ThreadName=http-thread-pool::http-listener-2(5) ] [timeMillis:1548960917138] [levelValue:800] [[ , RECV TLSv1.2 警报:]]
[2019-01-31T13:55:17.138-0500] [Payara 4.1] [INFO] [] [] [tid: _ThreadID=37 _ThreadName=http-thread-pool::http-listener-2(5) ] [timeMillis:1548960917138] [levelValue:800] [[ 致命的,]]
[2019-01-31T13:55:17.138-0500] [Payara 4.1] [INFO] [] [] [tid: _ThreadID=37 _ThreadName=http-thread-pool::http-listener-2(5) ] [timeMillis:1548960917138] [levelValue:800] [[ decode_error]]
[2019-01-31T13:55:17.138-0500] [Payara 4.1] [INFO] [] [] [tid: _ThreadID=37 _ThreadName=http-thread-pool::http-listener-2(5) ] [timeMillis:1548960917138] [levelValue:800] [[ http-thread-pool::http-listener-2(5),致命:引擎已经关闭。重新抛出 javax.net.ssl.SSLException:收到致命警报:decode_error]]
[2019-01-31T13:55:17.138-0500] [Payara 4.1] [INFO] [] [] [tid: _ThreadID=37 _ThreadName=http-thread-pool::http-listener-2(5) ] [timeMillis:1548960917138] [levelValue:800] [[ http-thread-pool::http-listener-2(5),致命:引擎已经关闭。重新抛出 javax.net.ssl.SSLException:收到致命警报:decode_error]]
【问题讨论】:
标签: java apache payara java-security