This page has not been written.
Let's assume we have a WWW directory named 'c:>\users\hirano\web'
and you can access to files in this directory from a WWW browser.
Make the following directory structure and copy files from the HORB
package.
c:>\users\hirano\web\horb\orb\*.class (copy files from horb\orb\*.class)
Put your classes (both client classes and server classes) into the directory. Let's assume one of our class is myproj.Client for example. (myproj is the package name.)
c:>\users\hirano\web\myproj\Client.class
c:>\users\hirano\web\myproj\Server.class
.....
Put a html file in this directory.
c:>\users\hirano\web\myproj\myproj.html
Make the following script file.
set CLASSPATH=c:\users\hirano\web horb -conf myproj.conf (java myproj.Server ,if your server object is a daemon object.)
Prepare myproj.conf and myproj.acl if you need. For example;
# myproj.conf horbServer[0].port=8887 accessControl[0].name=MYPROJ_ACL accessControl[0].source=myproj.acl
# myproj.acl myproj.Server.host=* myproj.Server.user=*
Add the following lines in the myproj.html file.
<APPLET CODE="myproj.Client.class" width=300 height=300 CODEBASE=".."> </APPLET>