Page 1 of 1

About Question enthuware.jwpv6.2.747 :

Posted: Wed Sep 28, 2011 12:28 pm
by Ciprian Mihalache
It is very strange the code :

Code: Select all

public void service(HttpServletRequest req, HttpServletResponse res)
  {
    super.service();
  }
because there is no "service" method in HttpServlet without parameters, so the code does not compile.
If it we put

Code: Select all

super.service(req, res);
, the code still does not compile because our service method does not declare any thrown exception.
Am I missing something?

Re: About Question enthuware.jwpv6.2.747 :

Posted: Wed Sep 28, 2011 8:02 pm
by admin
You are right. This has now been fixed.

thank you for your feedback!