type = defaultInfraLayer;
}
ICartagoInfrastructureLayer service = infraLayers.get(type);
if (service != null){
try {
service.startService(instance,address);
} catch (Exception ex){
throw new CartagoException("Infrastructure layer service failure: "+type);
}
} else {
throw new CartagoException("Infrastructure layer "+type+"not installed");