Citrix 环境中 Java 进程将 CPU 占用率为 100%
我们有一个基于 java 的应用程序,它作为小程序在 Internet Explorer 中运行。该小程序所做的事情之一是加载用于启动第三方软件的 dll。我们的一位客户已在 Citrix 环境中部署了我们的应用程序。仅在该客户端(也是唯一运行 Citrix 的客户端)中,我们才会看到 Citrix 服务器上的 CPU 间歇性达到 100% 的问题。当我们使用进程资源管理器查看发生的情况时,我发现罪魁祸首是 MSVCR71.dll。我该如何解决这个问题?
We have a java based application that runs as an applet in internet explorer. One of the things that this applet does is load a dll that is used to launch a third party piece of software. One of our clients has deployed our application in a Citrix environment. Only with this client, (who is also the only one running Citrix) do we see a problem where, intermittently, CPU spikes on the Citrix server to 100%. When we use process explorer to see what is happening, I see that the culprit is MSVCR71.dll. How do I solve this problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
经过近五周的努力,我找到了这个问题的答案。它与 Citrix 无关,也与加载第三方软件无关。发生的事情是我两次处理 JDialog 框。我第二次处理它时,系统占用了 CPU 并导致 CPU 峰值。
After almost five weeks of effort, I found the answer to this problem. It had nothing to do with Citrix, nor did it have to do with loading a third party piece of software. What happened was that I was disposing a JDialog box twice. The second time I disposed it, the system seized and spiked the CPU.