Dear Luiggi, I have a huge doubt.
I schedule with Servlets and I got the following surprise:
I send data by submit to a servlet_1, then it is captured by a doPost (included!)
from this servlet_1 -> doPost I do a request.getRequestDispatcher (servlet_2) .forward (request, response); Then ... yes I am redirecting with request.getRequestDispatcher ... why it is captured by the doPost (of servlet_2) and not the doGet.
I always assumed that a request.getRequestDispatcher sends data of type GET.
Help me understand this.