Bundle bundle = OsgiContext.getBundleByName(pluginName);
pluginJspDispatchServlet = createNewPluginJspDispatchServlet(bundle);
pluginNameServletMap.put(pluginName, pluginJspDispatchServlet);
}
try {
pluginJspDispatchServlet.service(request, response);
} catch (Exception ex) {
throw new RuntimeException(ex);
}
}