Justin, this is the documentation I followed.
It is not difficult at all
Regards
Great thread guy's
I am just about to put in a request for enhancement with one of Junipers SE's to see if we can get this resolved.
I just wanted to see if anyone had heard of any developments on the grapevin?
Thanks
Have you had any luck getting ProperJavaRDP to work FullScreen? There was a post about how to do this in another thread from around the same thing:
Looks like some Java coding was needed. If there is updates applet code, I'd like to get it.
You have to add this param to your settings,
<param name="geometry" value="1024x768">
The Geometry tag will make the RDP window bigger, but it's a fixed size. I'd like to use a full screen option, so users with different monitor resolutions can make it bigger or smaller dynamically.
I also would like to see the fullscreen switch implemented. Has anyone figured out how to do it? This is nearly a perfect solution so far: my users login from their Mac OS X machines at home and can click on a dynamic link that automatically RDP's into their workstation with SSO....essentially, they click one link, one time, and the next thing they know, they're already logged in on their Windows desktop and staring at the apps they left open before they left work! From a Mac!
Is there javascript we can implement in the code to set variables based on the Mac's desktop resolution, then use these variables in the geometry parameter? I don't know javascript. thanks.
I've patched the properojavardp to include a full-screen option, it requires java 1.4 or higher.
The compiled patched version is attached. You can enable fullscreen by adding <param name="fullscreen" value="yes">
Regards,
Ernst
I have successfully test your full screen applet.
Thanks
I only recieve errors when using this properjavardp-1.4-fullscreen.zip. I'm using this code
<html>
<head>
<title>ProperJavaRDP</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<h2>You may close this window when you are finished...</h2>
<applet code="net.propero.rdp.applet.RdpApplet.class"
codebase="<< CODEBASE >>"
archive="properJavaRDP14-1.1.jar"
width="640" height="480"
name="ProperJavaRDP" align="top">
<param name="code" value="net.propero.rdp.applet.RdpApplet.class">
<param name="codebase" value="<< CODEBASE >>">
<param name="archive" value="properJavaRDP14-1.1.jar">
<param name="cabbase" value="">
<param name="name" value="ProperJavaRDP">
<param name="fullscreen" value="yes">
<param name="align" value="top">
<param name="port" value="3389">
<param name="username" value="<<USER>>">
<param name="password" value="<<PASSWORD>>">
<param name="domain" value="YOURDOMAN">
<param name="bpp" value="24">
</applet>
</body>
</html>
What am i doning wrong can some one please help me with this
TIA
Henk
Does it works with the standard applet ?
I use this code to run the modified applet in fullscreen
<applet code="net.propero.rdp.applet.RdpApplet.class"
codebase="<< CODEBASE >>"
archive="log4j-java1.1.jar,properJavaRDP-1.1.jar,properJavaRDP14-1.1.jar,java-getopt-1.0.11.jar"
width="640" height="480"
name="ProperRDP-FS" align="top">
<param name="code" value="net.propero.rdp.applet.RdpApplet.class">
<param name="codebase" value="<< CODEBASE >>">
<param name="archive" value="log4j-java1.1.jar,properJavaRDP-1.1.jar,properJavaRDP14-1.1.jar,java-getopt-1.0.11.jar">
<param name="cabbase" value="">
<param name="name" value="ProperRDP-FS">
<param name="width" value="640">
<param name="height" value="480">
<param name="align" value="top">
<param name="Server" value="<<HOST>>">
<param name="Port" value="<<PORT>>">
<param name="fullscreen" value="yes">
</applet>