User`s manual

Creating Web Pages
4
85
Using Java Viewers to Send Information
sampleSite.html
<html>
<head>
<title>SampleSite LiveApplet</title>
</head>
<frameset rows="70,*">
<frameset src="head.html">
<frame src="LiveApplet.html">
</frameset>
</html>
head.html
<html>
<head>
<title>LiveApplet comment</title>
</head>
<body>
<center><h1>Picture taken in front of Alta in Shinjuku</h1></center>
</body>
</html>
LiveApplet.html
<html>
<meta http-equiv="Content-type" content="text/html;charset=iso-8859-1">
<head>
<title>LiveApplet</title>
</head>
<body>
<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>
</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
3