tmpURI = new URI(domainUri);
if (tmpURI.isAbsolute()){
domainUrl = tmpURI.toURL();
}
} catch(Exception ex) {
throw new ActivationException("domain uri " +
domainUri +
"must be a valid url");
}
try {
tmpURI = new URI(nodeUri);
if (tmpURI.isAbsolute()){
nodeUrl = tmpURI.toURL();
}
} catch(Exception ex) {
nodeUrl = null;
}
createManagementNode();
}
} catch(ActivationException ex) {
throw ex;
} catch(Exception ex) {
throw new ActivationException(ex);
}
}