Page 1 of 1

About Question enthuware.jwpv6.2.1105 :

Posted: Sun Jan 08, 2012 7:59 am
by Ciprian Mihalache
In the exhibit we can find the code:

Code: Select all

public void service(HttpServletRequest req, HttpServletResponse res)
  {
     super();
  }
For sure this will not compile. If you meant:

Code: Select all

public void service(HttpServletRequest req, HttpServletResponse res)
  {
     super.service(req, res);
  }
also the checked exceptions must be declared (similar to viewtopic.php?f=3&t=686)

Re: About Question enthuware.jwpv6.2.1105 :

Posted: Sun Jan 08, 2012 4:08 pm
by admin
You are right. This has now been fixed.

thank you for your feedback!