// TODO better domaiURI, maybe based on webapp name?
String domainURI = "http://localhost/" + servletContext.getServletContextName().replace(' ', '.');
File repository = new File(servletContext.getRealPath(REPOSITORY_FOLDER_NAME));
HotUpdatableSCADomain scaDomain = new HotUpdatableSCADomain(domainURI, repository, 2000);
servletContext.setAttribute(SCADomainHelper.SCA_DOMAIN_ATTRIBUTE, scaDomain);
super.contextInitialized(event);
}