SynchronizationDriverFactory.NODE_AGENT_STARTUP_CONFIG_URL);
}
private Vector synchronizeWithDASInternal(String url) throws AgentException {
getLogger().log(Level.INFO, "nodeagent.ExecutingSync");
final DASPropertyReader dasEnv = getDASPropertyReader();
// We want to control initialization ourselves. The issue is that we do
// not want initialization (i.e.loading of NSS) to happen implicitly
// here or we will not able to synchronize the NSS database on Windows
// platforms since it will be in use. For this reason, we do not want
// orb initialization in our InitialContextFactory to occur.
SerialInitContextFactory.setInitializeOrbManager(false);
// Setup as an SSL client
if (Boolean.valueOf(dasEnv.isDASSecure()).booleanValue()) {
String certNickname = "s1as";
/*try {
if (getConfigContext() != null)
certNickname = ServerHelper.getCertNickname(
getConfigContext(), DAS_SERVER_NAME);