|
The
current ActionServlet passes both doGet() and doPost() to
process(request, response). if you want your entire application to handle
doGet() with an error.jsp, ActionServlet is a good place to do so (assuming each
webapp get its own ActionServlet). If you want to handle them per Action
basis, you can find out HttpMethod with request.getMethod(), the
request object is passed to Action.perform() by
ActionServlet.
|
- POST and GET method kiatkin
- Re: POST and GET method Spencer Smith
- RE: POST and GET method Morris, John
- Re: POST and GET method Kevin Wang
- Re: POST and GET method kiatkin
- RE: POST and GET method GU,JAMES (HP-Corvallis,ex1)

