throws IOException, NotFoundException, CannotCompileException
{
if (args.length == 1) {
AppletServer web = new AppletServer(args[0]);
web.exportObject("counter", new Counter());
web.run();
}
else
System.err.println(
"Usage: java sample.rmi.Counter <port number>");
}