Previous | Next | (P-PDF) Forms & FDF
Topic: PDFForm RequestDispatcher - doPost (Via Email)
Conf: (P-PDF) Forms & FDF, Msg: 77491
From: sameermaggon
Date: 11/29/2002 03:44 PM
Hi,
I am facing some problem in directing the request from my Servlet (in
doPost) to a JSP page. When I "Submit" the PDF Form Online, my servlet
Parses it (#FDF) and then just uses the RequestDispatcher Method to forward
to a JSP page
String url="/errorpage.jsp?ErrorCode=" + formServerexp.getMainCode() +
"&ErrorType=Formserver";
ServletContext sc = getServletContext();
RequestDispatcher rd = sc.getRequestDispatcher(url);
rd.forward(req, res);
But, the problem it that
1. On the client side, the Internet Explorer shows E:/Temp/34455.htm
2. The Images on the JSP page are not shown, the path of those images is
set to the local drive.
Please help
Sameer