public WebServerInfo getWebServerInfo(String moduleID, HttpServletRequest request) throws ConfigException {
// let's get our admin context
ConfigContext cc = ApplicationServer.getServerContext().getConfigContext();
Server server = ServerBeansFactory.getServerBean(cc);
Config config = ServerBeansFactory.getConfigBean(cc);
ApplicationRef ref = server.getApplicationRefByRef(moduleID);
return(getWebServerInfo(cc, config, ref.getVirtualServers(), null, null));
}