User`s manual

Creating Web Pages
4
87
Using Java Viewers to Send Information
Glimpse.html
<html>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<head>
<script language="JavaScript">
<!--
function clicked(btn) {
url = btn.name
window.open(url,"LiveApplet","width=470,height=400")
}
// -->
</script>
<title>Glimpse</title>
</head>
<body>
<table>
<form name="form">
<tr><td><center>
<applet archive="Glimpse.zip" codebase="http://
192.168.100.10*/
-wvdoc-01-/Glimpse/"
code="Glimpse.class" width=160 height=120>
<param name=cabbase value="Glimpse.cab">
<param name=url value="http://
192.168.100.10*/">
</applet>
</center></td></tr>
<tr><td><center>
<input type="Button" name="popup.html" value="click me"
onClick="clicked(this)">
</center></td></tr>
</form>
</table>
</body>
</html>
popup.html
<html>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<head>
<title>LiveApplet</title>
</head>
<body>
<center>
<applet archive="LiveApplet.zip" codebase="http://
192.168.100.10*/-wvdoc-
01-/LiveApplet/"
code="LiveApplet.class" width=450 height=380>
<PARAM NAME=cabbase VALUE="LiveApplet.cab">
<PARAM NAME=url VALUE="http://
192.168.100.10*/">
</applet>
</center>
</body>
</html>
* The underscored portion is a sample IP address. Enter the actual camera server IP address.
Also, if the camera server's HTTP conversion server port number is 80, only the camera server
host name is required. If not, you must include the camera server host port number (eg.
192.168.100.10:8080).
1
2