Index: src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPageModel.java =================================================================== --- src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPageModel.java (revision 41507) +++ src/org/jboss/tools/openshift/express/internal/ui/wizard/ApplicationConfigurationWizardPageModel.java (working copy) @@ -82,7 +82,7 @@ public List getApplications() throws OpenShiftException, SocketTimeoutException { UserDelegate user = getUser(); - if (user == null || !user.hasDomain()) { + if (user == null || !user.isConnected() || !user.hasDomain()) { return Collections.emptyList(); } return user.getApplications(); Index: src/org/jboss/tools/openshift/express/internal/ui/action/CreateApplicationAction.java =================================================================== --- src/org/jboss/tools/openshift/express/internal/ui/action/CreateApplicationAction.java (revision 41507) +++ src/org/jboss/tools/openshift/express/internal/ui/action/CreateApplicationAction.java (working copy) @@ -43,7 +43,6 @@ Object sel = ((ITreeSelection) selection).getFirstElement(); if (sel instanceof UserDelegate) { final UserDelegate user = (UserDelegate) sel; - user.checkForPassword(); final OpenShiftExpressApplicationWizard wizard = new NewOpenShiftExpressApplicationWizard(user); final WizardDialog wizardDialog = new WizardDialog(new Shell(), wizard); wizardDialog.open();