IdentityManager.setUser((String)config.get(AgentConfig.K_DAS_USER));
IdentityManager.setPassword((String)config.get(AgentConfig.K_DAS_PASSWORD));
IdentityManager.setMasterPassword((String)config.get(AgentConfig.K_MASTER_PASSWORD));
if (bRendezvous) {
try {
agent.rendezvousWithDAS();
} catch (Exception ex) {
//An IOException indicates that the DAS is not reachable and as such
//should not be considered an error.
if (!(ex instanceof IOException)) {
throw ex;