Lo que quiero hacer es que tengo un servlet el cual quiero que me regrese el objeto que tiene a una tabla que esta en una pagina jsp pero tengo el siguiente codigo el cual no me regresa mas que una tabla en blanco no se si me esta faltando o sobrando algo.
Gracias por la ayuda de antemano. Saludos
Código PHP:
public void doGet(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
sendParameters(req, resp);
}
public void doPost(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
sendParameters(req,resp);
}
public void handleRequest(HttpServletRequest req, HttpServletResponse resp)
throws ServletException, IOException {
sendParameters(req, resp);
}
private void sendParameters(HttpServletRequest req, HttpServletResponse resp){
long ini = System.currentTimeMillis();
logger.info("." + req.getRequestURI() + "?" + req.getQueryString());
String cadInfo = req.getParameter("cadInfo");
logger.info("cadInfo --- " + cadInfo);
try {
InfoVO info = new InfoVO();
if(cadInfo!=null && !cadInfo.equals("")){
String []cad = cadInfo.split("\\|");
logger.info("cad.length --- " + cad.length);
if(cad.length>0){
for( int i=0;i<cad.length;i++){
logger.info("cad[i] --- " + cad[i]);
String []param = cad[i].split("\\=");
if(param[0].equals("nombre"))
info.setnombre(param[1]);
if(param[0].equals("fecha"))
info.setfecha(param[1]);
if(param[0].equals("hora"))
info.sethora(param[1]);
}
}
}
req.getSession().getAttribute("lista");
logger.info("req ****************** " + req.getSession().getAttribute("lista"));
LoginAppService loginAppService = new LoginAppService();
List lista = loginAppService.catalogo();
if(lista!=null && !lista.isEmpty())
req.setAttribute("lista",lista);
req.setAttribute("solicitar","solicitar");
RequestDispatcher rd=null;
rd = req.getRequestDispatcher("Salir.jsp");
rd = req.getRequestDispatcher("/jsp/solicitar.jsp");
rd.forward(req, resp);
req.getRequestDispatcher().forward("pag.jsp");
resp.sendRedirect("http:..............jsp");
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}