echo off rem note: The following conditions must be true for this batch file to work: rem rem 1. It has to run on PC running Communicator with signing certificate rem 2. The directory c:\user\workingdir has to exist rem 3. the netscape security package must be in the classpath (is in JAR file in Netscape distribution) rem 4. The following files must be in c:\user\workingdir rem UserInfoApplet.java rem UserInfo.java rem index.html rem UserInfo.dll rem rem When this batch file has successfully completed, all files required to deploy this applet will be in rem the directory c:\user\sls\deploy. Copy these files to a web server and load the page UserInfo.html to rem use this functionality. rem echo on rem cd c:\user\workingdir deltree \UserInfo deltree \Deploy javac UserInfoApplet.java javac UserInfo.java mkdir \UserInfo mkdir \Deploy xcopy UserInfoApplet.class UserInfo\. rem xcopy UserInfoWrapper.class UserInfo\. signtool -d"c:\Program Files\Netscape\Users\small" -k"Steven small's VeriSign Trust Network ID" -Z UserInfo.jar UserInfo xcopy UserInfo.class Deploy\. xcopy UserInfo.jar Deploy\. xcopy index.html Deploy\. xcopy UserInfo.dll Deploy\. deltree \UserInfo