*/
private void loadConfiguration() throws ConfigurationException
{
//Properties from system properties
CompositeConfiguration compositeConfig = new CompositeConfiguration();
compositeConfig.addConfiguration(new SystemConfiguration());
//Properties from file
PropertiesConfiguration propConfig = null;
final String filename = System.getProperty("juddi.propertiesFile");
if (filename != null) {
propConfig = new PropertiesConfiguration(filename);