response.setLocale(this.locale);
try {
request.getRequestDispatcher(this.path).include(this.request, response);
}
catch (Exception e) {
throw new RenderingException("Error while rendering a component of type: " + this.getClass().getName(), e);
}
return writer.toString();
}