InputStream jis = null;
try {
URL stateURL = new URL(baseURL, "META-INF/config.ser");
jis = stateURL.openStream();
ObjectInputStream ois = new ObjectInputStream(jis);
config.readExternal(ois);
config.setReferencePattern("ConfigurationStore", objectName);
} catch (ClassNotFoundException e) {
throw new InvalidConfigException("Unable to load class from config: " + configId, e);
} finally {
if (jis != null) {