sorry i forgot something.
i used this two lines of simple code:
RequestDispatcher rq = request.getRequestDispatcher("/blog/entry/
view.do?logTitle=Test-Entry");
rq.forward(request, response);
> sorry i forgot something.
> i used this two lines of simple code:
>
> RequestDispatcher rq = request.getRequestDispatcher("/blog/entry/
> view.do?logTitle=Test-Entry");
> rq.forward(request, response);
When you get the RD from request it cannot step outside the current context
root. You have to get the ServletContext of the other context root, then call
ServletContext.getRequestDispatcher(java.lang.String) on it.
- Lew