forward from doPost() to doGet()
843840Mar 1 2002 — edited Mar 4 2002Hi
Does someone know how to forward a request from the doPost() method of servlet2 to the doGet() of servlet1.
The idea is that after processing a form with the doPost() of servlet2, I want to come back to the initial page generated by the doGet() of servlet1.
If I simply use dispatcher.forward, of course it calls the doPost() of servlet1. And the doGet() of servlet2 is already in use...
Thanks!!!
Nicolas