Starts up a standalone Realm Manager. It uses the command
line arguments to initialize the ORB.
try {
Utility.checkJVMVersion();
// Initialize the ORB if not already started.
ORBManager.getORB() ;
Switch theSwitch = Switch.getSwitch();
NamingManager nm = new NamingManagerImpl();
theSwitch.setNamingManager(nm);
RealmManager mgr = new RealmManager();
mgr.init(); // Initialize the Authentication Service ...
mgr.start(); // Start the Server.
} catch (Exception ex) {
_logger.log(Level.SEVERE,
"java_security.realm_manager_exception",ex);
}