Installation of PortalNet is a relatively simple process. First you need to download the Java Virtual Machine for your platform in the form of either the JDK (Java Developer Kit) or JRE (Java Runtime Environment). I recommend the JRE as it is considerably smaller. You can find both JDK and JRE at:
Sun's Java
Download Main entry point for downloading Java products, primarily
for Windows and Solaris
Sun's list of
3rd party Java ports For JDK or JRE for other platforms
Next you'll need the PortalNet client code:
portalnet.jar The entire PortalNet
application
symbeans.jar Required Symantec package,
place in same path as portalnet.jar
portalnet.bat Windows example startup
file
pnetunix Unix example
startup file
The portalnet.zip file is needed for initial installations, or for major
upgrades. Major upgrades will always be announced with e-mail to
all users accompanied with any required instructions. code.zip
can generally be downloaded for an incremental upgrade that doesn't require
a new card database, card rulings, etc. Again, e-mail will be sent
to all users with any further needed instructions. For most other
code updates, the new code will be automatically installed for you when
you log into PortalNet.
Included in your portalnet.zip file is a sample Windows startup bat file called portalnet.bat - the text of this file is:
set path=d:\jre113\bin
d:
cd \PortalNet
jre -classpath d:\jre113\lib\rt.jar;d:\PortalNet\symbeans.jar;d:\PortalNet\portalnet.jar Loader 204.26.80.70 1961
jre -classpath d:\jre113\lib\rt.jar;d:\PortalNet\symbeans.jar;d:\PortalNet\icebrowserbean.jar;d:\PortalNet\portalnet.jar MagicNet 204.26.80.70 1961 KentIn rhis example, the JRE was installed into d:\jre113. PortalNet was installed in d:\PortalNet. If you are using a JDK the startups is just slightly different:
set path=d:\jdk113\bin
d:
cd \PortalNet
java -classpath d:\jdk113\lib\classes.zip;d:\PortalNet\symbeans.jar;d:\PortalNet\portalnet.jar Loader 204.26.80.70 1961
java -classpath d:\jdk113\lib\classes.zip;d:\PortalNet\symbeans.jar;d:\PortalNet\icebrowserbean.jar;d:\PortalNet\portalnet.jar MagicNet 204.26.80.70 1961 KentIn this example the JDK was installed to d:\jdk113.
The important points to remember from these Windows specific example are:
java -classpath "d:\Program Files\jdk113\lib\classes.zip;d:\PortalNet\symbeans.jar;d:\PortalNet\portalnet.jar" Loader 204.26.80.70 1961
java -classpath "d:\Program Files\jdk113\lib\classes.zip;d:\PortalNet\symbeans.jar;d:\PortalNet\icebrowserbean.jar;d:\PortalNet\portalnet.jar" MagicNet 204.26.80.70 1961 Kent