* [ 1652376 ] Silent install and web port <> 80

This commit is contained in:
Heng Sin Low 2007-02-05 13:27:59 +00:00
parent 95700fa18e
commit 9476cf2687
1 changed files with 15 additions and 3 deletions

View File

@ -928,8 +928,11 @@ public class ConfigurationData
p_panel.fJavaType.setSelectedIndex(0);
}
else
{
if (getJavaHome() == null)
m_javaConfig[index].init();
}
}
/**
* Test Java
@ -1047,9 +1050,16 @@ public class ConfigurationData
p_panel.fAppsType.setSelectedIndex(0);
}
else
{
if (getAppsServerDeployDir() == null ||
getAppsServerJNPPort() <= 0 ||
getAppsServerSSLPort() <= 0 ||
getAppsServerWebPort() <= 0)
m_appsConfig[index].init();
}
}
/**
* Test Apps Server
* @return error message or null of OK
@ -1333,7 +1343,9 @@ public class ConfigurationData
}
else
{
if (getDatabasePort() <= 0)
m_databaseConfig[index].init();
if (p_panel != null)
{
String[] databases = m_databaseConfig[index].discoverDatabases(selected);