/** Get the template to show. */
  protected Template handleRequest(
      javax.servlet.http.HttpServletRequest aRequest,
      javax.servlet.http.HttpServletResponse aResponse,
      Context ctx)
      throws java.lang.Exception {
    // Bind standard WebWork utility into context

    ServletActionContext.setContext(aRequest, aResponse, getServletContext(), null);
    ctx.put(WEBWORK_UTIL, new WebWorkUtil(ctx));

    String servletPath = (String) aRequest.getAttribute("javax.servlet.include.servlet_path");
    if (servletPath == null) servletPath = aRequest.getServletPath();
    return getTemplate(servletPath);
  }