Delegate the POST request to our requestHandler() . @param req a value of type 'HttpServletRequest' @param res a value of type 'HttpServletResponse' @exception IOException if an error occurs @exception ServletException if an error occurs
(HttpServletRequest req, HttpServletResponse res)
| 128 | * @exception ServletException if an error occurs |
| 129 | */ |
| 130 | @Override |
| 131 | public void doPost(HttpServletRequest req, HttpServletResponse res) throws IOException, ServletException { |
| 132 | if (debug > 0) { |
| 133 | log("SSIServlet.doPost()"); |
| 134 | } |
| 135 | requestHandler(req, res); |
| 136 | } |
| 137 | |
| 138 | |
| 139 | /** |
nothing calls this directly
no test coverage detected