Menu

#16 Java 1.6 Issues

open
nobody
None
5
2007-12-06
2007-12-06
KGolomb
No

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.

Discussion

  • Nobody/Anonymous

    Logged In: NO

    build 1.0.13 works fine with JRE 1.6 (WinXP)

     
  • Nobody/Anonymous

    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?

     
  • Gaurang Sinkar

    Gaurang Sinkar - 2012-08-07

    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

     

Log in to post a comment.