NSArray hostArray = (NSArray) config.valueForKey("hostArray");
NSArray applicationArray = (NSArray) config.valueForKey("applicationArray");
NSArray instanceArray = (NSArray) config.valueForKey("instanceArray");
// Configure the site
if (siteDict != null) aConfig.updateValues(siteDict);
// Look through the array of hosts, and see if we need to add/remove any - configure the rest
NSMutableArray currentHosts = new NSMutableArray(aConfig.hostArray());
if (hostArray != null) {
for (Enumeration e = hostArray.objectEnumerator(); e.hasMoreElements(); ) {