// Cache the corresponding ActonConfig instance
WebContext wcontext = (WebContext) context;
ModuleConfig moduleConfig = (ModuleConfig)
wcontext.get(getModuleConfigKey());
ActionConfig actionConfig = moduleConfig.findActionConfig(path);
if (actionConfig == null) {
// Locate the mapping for unknown paths (if any)
ActionConfig configs[] = moduleConfig.findActionConfigs();
for (int i = 0; i < configs.length; i++) {