// if the server is started and local host, then we can bring up the dialog
if (!isLocalHost())
MessageDialog.openError(Display.getCurrent().getActiveShell(), CommonMessages.errorOpenWizard, CommonMessages.isNotLocalHost);
else
{
GeronimoAccountManager manager = new GeronimoAccountManager(server.getRuntime());
try {
manager.init();
} catch (Exception e1) {
MessageDialog.openError(Display.getCurrent().getActiveShell(), CommonMessages.errorOpenWizard, CommonMessages.cannotRead);
Trace.trace(Trace.SEVERE, "Properties file containing user information can't be read!", e1);
return;
}