Websphere 慢速 URLConnection
我们在 Linux 环境上部署了 Websphere 版本 6.1。 要打开 https 连接,我们对 java.net.URL
对象调用 openConnection()
和 connect()
。
打开此连接大约需要 3 分钟。 一旦建立连接,我们就可以非常快速地写入和读取数据。
使用 openssl 连接测试(ssh
控制台)运行速度非常快。 部署在同一台机器上、容器外部的简单 jar 应用程序也可以正常工作,但是一旦部署到 websphere 中,就会出现问题。
我们只在 Websphere 6.1 中遇到这个问题,在 6.0 中工作正常
有什么想法吗?
We have a Websphere version 6.1 deployed on a Linux environment. To open an https connection we call openConnection()
and connect()
on a java.net.URL
object.
Opening this connection takes aproximately 3 minutes. Once the connection is established we can write and read data very fast.
Using openssl a connectiontest (ssh
console) works very fast. A simple jar application deployed on the same machine, outside of the container, works normal too, but once deployed in websphere the problem occurs.
We only have this problem in a Websphere 6.1, works fine in 6.0
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
同一 JVM 上的应用程序设置了 https.proxyHost 和 http.proxyPort 系统属性,这使得我们的连接速度变慢。 (代理在这 3 分钟内找不到 url,之后使用了直接连接..)。
An application on the same JVM set the https.proxyHost and http.proxyPort system properties which made our connection go slow. (proxy could not find url in these 3 minutes and used a direct connection afterwards..).