public String callServlet(){
FacesContext fc = FacesContext.getCurrentInstance();
HttpServletRequest req = (HttpServletRequest)fc.getExternalContext().getRequest();
HttpServletResponse resp=(HttpServletResponse)fc.getExternalContext().getResponse();
try{
ShowPdfServlet showPdf = new ShowPdfServlet();
showPdf.doGet(req, resp);
}catch(Exception e){
System.out.println("ERROR");
}
return "";
}