} else {
for (int j = 0; j < srs.length; j++) {
IConfigurationInstaller ci = (IConfigurationInstaller) Activator.getBundleContext().getService(srs[j]);
if (ci.canHandle(entry)) {
try {
ci.install(entry, event.getBundle());
} catch (Exception ex) {
LOG.debug("Installation failed for configuration file found under URL: {}", entry);
}
}
}