ConfigurationException {
XMLConfigurationLoader configurator = new XMLConfigurationLoader ();
InputStream in = openConfigStream ();
try {
InputStreamReader reader = new InputStreamReader (in);
return configurator.loadConfiguration (reader);
} finally {
in.close ();
}
}