// first on in the array)
String selectedConfig = selectLocalImportedConfig(
localImportedConfigs, importedConfigProperties);
// If we have one to use, then create the container
if (selectedConfig != null) {
IRemoteServiceContainer rsContainer = createContainer(
desc,
selectedConfig,
PropertiesUtil
.createMapFromDictionary(importedConfigProperties));
if (rsContainer != null) {
trace("createAndConfigureProxyContainers", //$NON-NLS-1$
"created new proxy container with config type=" //$NON-NLS-1$
+ selectedConfig + " and id=" //$NON-NLS-1$
+ rsContainer.getContainer().getID());
return rsContainer;
}
}
}
}