final Configuration[] portals = config.getChild("portals").getChildren("portal");
for(int i=0; i < portals.length; i++ ) {
final Configuration current = portals[i];
final String name = current.getAttribute("name");
try {
PortalComponentManager c = new DefaultPortalComponentManager(this, this.context);
this.portalComponentManagers.put( name, c );
ContainerUtil.enableLogging( c, this.getLogger() );
ContainerUtil.contextualize( c, this.context );
ContainerUtil.service( c, this.manager );
ContainerUtil.configure( c, current );