Some xtra info that might help with Eric's suggestions...........

1. You DO have to make sure that the java code is available through the web
server (i.e. the classes have to be accessible in the same directory as the web
page or you need to provide  a codebase tage for the applet that points to a URL
with the classes in it.)
2. AT least from aix using netscape you should provide HEIGHT and WIDTH for the
java client in the window (getting half a CDE window is typical of this). I
believe that these fileds are technically required, though you may be able to get
somewhere without them. This can get complex but you can fiddle it out if you
hang in there.

<HTML>
<TITLE>
some title
</TITLE>
<h1>Java VNCViewer at http://webserver/unix/800x600x24.html</h1>
This page would put the web page with the embedded applet in one place<br>
but keep the java code in another
<APPLET  CODEBASE=http://webserver/vnc/ CODE=vncviewer.class
ARCHIVE=vncviewer.jar WIDTH=1024 HEIGHT=768>
<param name=PORT value=5950>
</APPLET>
</HTML>

You can also embed the java, like so for explorer - code base here is for
something different since its an M$ client  (more info is available at an older
article found at
http://www.javaworld.com/javaworld/jw-06-1999/jw-06-plugin-2.html )
I think the non-embedded version is much quicker............

<HTML>
<HEAD>
<TITLE>
some title
</TITLE>
</HEAD>
<BODY>
<h1>Java VNCViewer</h1>
<OBJECT
classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93
WIDTH=1024
HEIGHT=768
CODEBASE=http://java.sun.com/products/plugin/1.3/jinstall-12-win32.cab@Version=1
,3,0,0>
<param name=PORT value=5950>
<param name=CODE value=vncviewer.class>
<param name=ARCHIVE value=vncviewer.jar>
<param name=type value=application.x-java-applet;version=1.3>
</OBJECT>
</BODY>
</HTML>
---------------------------------------------------------------------
To unsubscribe, send a message with the line: unsubscribe vnc-list
to [EMAIL PROTECTED]
See also: http://www.uk.research.att.com/vnc/intouch.html
---------------------------------------------------------------------

Reply via email to