Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
support FORM POST
Browse files Browse the repository at this point in the history
  • Loading branch information
jmazzitelli committed Nov 16, 2015
1 parent a74f046 commit 0051430
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,15 @@ public void init() throws ServletException {

@Override
protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
doIt(req, resp);
}

@Override
protected void doPost(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {
doIt(req, resp);
}

protected void doIt(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException {

disableBrowserCache(resp);

Expand Down

0 comments on commit 0051430

Please sign in to comment.