Websphere 慢速 URLConnection

发布于 2024-07-30 02:34:20 字数 387 浏览 7 评论 0原文

我们在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

若有似无的小暗淡 2024-08-06 02:34:20

同一 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..).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文