ActivationGroupID SERVER_ACTIVATION_GROUP_ID = ActivationGroup.getSystem().registerGroup(dsServerGroup);
System.out.println("Il gruppo del Server Centrale e' stato creato, registrato col sistema d'attivazione, ed ha identificativo = " + SERVER_ACTIVATION_GROUP_ID.hashCode());
ActivationGroupID AUTH_ACTIVATION_GROUP_ID = ActivationGroup.getSystem().registerGroup(dsAuthGroup);
System.out.println("Il gruppo del Server di Autenticazione e' stato creato, registrato col sistema d'attivazione, ed ha identificativo = " + AUTH_ACTIVATION_GROUP_ID.hashCode());
ActivationDesc dsServer = new ActivationDesc(SERVER_ACTIVATION_GROUP_ID, server_centrale, implCodebase, null);
ServerInterface stub_server = (ServerInterface) Activatable.register(dsServer);
System.out.println("E' stato creato l'activation descriptor del Server Centrale che e' stato registrato col demone d'attivazione");
ActivationDesc dsAuth = new ActivationDesc(AUTH_ACTIVATION_GROUP_ID, server_auth, implCodebase, new MarshalledObject(stub_server));
LoginProxyInterface stub_auth = (LoginProxyInterface) Activatable.register(dsAuth);
System.out.println("E' stato creato l'activation descriptor del Server di Autenticazione che e' stato registrato col demone d'attivazione");
System.out.println("Il server attivabile adesso puo' essere acceduto attraverso lo stub: " + stub_auth);
System.out.println("Faccio il rebinding dello stub del Server di "