I wrote an applet. In normal enviroment (PC with browser), it runs just fine. But when I run it from browser on server, to which I connect via terminal, problems begin.
The main problem is that Java on server seems to take very long time to load classes - each time the new class is executed, there is a pause for 5-30 seconds, and only then it resumes working.
I used a method, which forces loading of all specified classes on startup (http://www.java2s.com/Code/Java/Reflection/Forcethegivenclasstobeloadedfully.htm). It helped a bit, but there is still exactly one pause (5 - 60 seconds), which happens at random point of execution - for example, when the user drags a picture or loads a file. And after that the execution runs as expected.
So, my question is: what could be causing such behavior, and how can I fix it?
EDIT:
I do not see the problem with the code - nothing form my code is executed, when the applet pauses.
Java details:
- Java Plug-in 1.6.0_21
- Using JRE version 1.6.0_21-b07 Java HotSpot(TM) Client VM
The browser - IE 8.
Terminal server - Citrix.
Operating system on terminal server - Windows.
I deploy the applet via the tag on the web page, like this:
<applet name="Parrot"
code="parrot.parrotApp.class"
archive="./Parrot.jar"
WIDTH="80%"
HEIGHT="80%"
>
</applet>
URLis one class that is well-known for sneakily producing DNS lookups when it's not expected. – Joachim Sauer Mar 30 '11 at 7:57