diff --git a/database_scripts/install/insert_initial_user.sql b/database_scripts/install/insert_initial_user.sql index 2c95217d..e014444e 100644 --- a/database_scripts/install/insert_initial_user.sql +++ b/database_scripts/install/insert_initial_user.sql @@ -3,7 +3,7 @@ USE proxl ; -- This will create an initial user in the "proxl" database --- The initial user will have user id "initial_user_mgmt_central_user" +-- The initial user will have user id "initial_proxl_user" -- The initial user will have password "FJS483792nzmv,xc4#&@(!VMKSDL" -- This is required to have an 'id' of 1. There is hard coding in the app for this id of 1. diff --git a/proxl_web_app/src/org/yeastrc/xlink/www/config_properties_file/ProxlConfigFileReader.java b/proxl_web_app/src/org/yeastrc/xlink/www/config_properties_file/ProxlConfigFileReader.java index 43a29559..a074fa09 100644 --- a/proxl_web_app/src/org/yeastrc/xlink/www/config_properties_file/ProxlConfigFileReader.java +++ b/proxl_web_app/src/org/yeastrc/xlink/www/config_properties_file/ProxlConfigFileReader.java @@ -58,13 +58,13 @@ public void populateProxlConfigFileValuesFromConfigFiles() throws IOException, P // log.error( msg ); // throw new ProxlWebappConfigException( msg ); // } - - if ( StringUtils.isEmpty( proxlConfigFileValues.getRequestingWebappIdentifier() ) ) { - String msg = "Property '" + PROPERTY_NAME__PROXL_WEBAPP_IDENTIFIER_FOR_USER_ACCOUNT_WEB_APP + "' must have a value in " - + "properties file: '" + CONFIG_DEFAULTS_FILENAME + "'."; - log.error( msg ); - throw new ProxlWebappConfigException( msg ); - } +// +// if ( StringUtils.isEmpty( proxlConfigFileValues.getRequestingWebappIdentifier() ) ) { +// String msg = "Property '" + PROPERTY_NAME__PROXL_WEBAPP_IDENTIFIER_FOR_USER_ACCOUNT_WEB_APP + "' must have a value in " +// + "properties file: '" + CONFIG_DEFAULTS_FILENAME + "'."; +// log.error( msg ); +// throw new ProxlWebappConfigException( msg ); +// } log.warn( "INFO: '" + PROPERTY_NAME__USER_ACCOUNT_WEB_APP_URL + "' has value: " + proxlConfigFileValues.getUserAccountServerURLandAppContext() );