| Author |
http method
|
Nelson Nadal
Ranch Hand
Joined: Jun 06, 2002
Posts: 169
|
|
|
Usually, when a servlet are referred by RequestDispatcher through forward() or include(), what HTTP method are used? GET OR POST? Thanks.
|
 |
Jeroen Wenting
Ranch Hand
Joined: Oct 12, 2000
Posts: 5093
|
|
It all depends on the original request type. forward() forwards the request from one servlet to another. If the request was a POST request doPost() will get called on both, if it was a GET request doGet() will get called on both.
|
42
|
 |
 |
|
|
subject: http method
|
|
|