Modify the HTML file generated by the Business Components Data Page Wizard to include the following tags used by the ORB.
Add the following PARAM
tags:
<PARAM NAME="vbroker.orb.gatekeeper.ior"
value="http://mywebserver/gatekeeper.ior">
<PARAM NAME="vbroker.orb.alwaysTunnel" value="true">
Note: Replace mywebserver
with the
host name of the web server that is running.
For Netscape Navigator
The above parameters must be specified in the EMBED
tag:
<EMBED type="application/x-java-applet;version=1.2"
java_CODE = "package3.Applet1.class"
...
<PARAM NAME="vbroker.orb.gatekeeper.ior"
value="http://mywebserver/gatekeeper.ior">
<PARAM NAME="vbroker.orb.alwaysTunnel" value="true">
</EMBED>
When viewing the applet with the Java plug-in version 1.1.2, the type parameter in the above tag should be changed for your browser. For example, for the Netscape Navigator:
<EMBED type="application/x-java-applet;version=1.1"
Related Topics