When utilizing the Java 1.6 JRE the ProperRDP Applet does not open the frame in a window. The only thing displayed is a tiny title bar with no window.
If you try it multiple times it seesm to work on a ration of 1 out of every 10 attempts.
I rolled back to JRE 1.4 and the ProperRDP applet then works.
Logged In: NO
build 1.0.13 works fine with JRE 1.6 (WinXP)
Logged In: NO
I am also observing this problem with properJavaRDP version 1.1 and Java 6 update 5 (build 1.6.0_05-b13). Any suggestions?
This occurs in Java 1.7 as well.
Please apply the following patch in file RdesktopFrame.java
In constructor RdesktopFrame() add the the following lines:
public RdesktopFrame() {
super();
//check java version to support JRE >= 1.6
double java_version = Double.parseDouble (System.getProperty("java.specification.version"));
if(java_version >=1.6){
this.setSize(Options.width+1,Options.height+1);
}
.....
//Remaining code as is
}
tomqq the developer of the project had provided the solution in one of the threads for jre 1.6. I have patched it for JRE 1.7 also.
Thanks and Regards,
Gaurang