connell-class / revassess

this is a trial repo for making a template for the revature assessment
2 stars 11 forks source link

tier6/test2: Servlet invocation missing servlet object name #26

Closed flacks closed 4 years ago

flacks commented 4 years ago
serv.getClass().getMethod("doGet", HttpServletRequest.class, HttpServletResponse.class).invoke(request, response);

is missing serv as the first argument of invoke(), since doGet() is overridden and cannot be static. Correct call is:

serv.getClass().getMethod("doGet", HttpServletRequest.class, HttpServletResponse.class).invoke(serv, request, response);