Page 1 of 1
About Question enthuware.jwpv6.2.884 :
Posted: Sun May 06, 2012 6:19 am
by ETS User
The question is asking for 3 options, but only 2 are allowed.
Re: About Question enthuware.jwpv6.2.884 :
Posted: Sun May 06, 2012 7:41 am
by admin
Please check this thread:
viewtopic.php?f=4&t=1011
Please let me know if that doesn't fix it.
You may confirm the version of the app from Help -> About menu. It should say 3.22.
HTH,
Paul.
Re: About Question enthuware.jwpv6.2.884 :
Posted: Thu Sep 06, 2012 7:01 am
by sergey183
why
It allows you to have request processing in a centralized place.
not valid ?
Re: About Question enthuware.jwpv6.2.884 :
Posted: Sun Sep 09, 2012 3:10 pm
by admin
sergey183 wrote:why
It allows you to have request processing in a centralized place.
not valid ?
A lot of request processing still happens in a servlet and also in JSP (the formatting of the result). So it is not correct to say that it allows request processing in a centralized place.
HTH,
Paul.
Re: About Question enthuware.jwpv6.2.884 :
Posted: Sun Feb 23, 2014 1:55 am
by ramy6_1
Hello ,
I think this option "It allows you to have request processing in a centralized place." is valid also.
I suggest to add this to valid options
Re: About Question enthuware.jwpv6.2.884 :
Posted: Sun Feb 23, 2014 3:45 am
by admin
Please see my post above.
Re: About Question enthuware.jwpv6.2.884 :
Posted: Sat Apr 30, 2016 8:11 pm
by himaiMinh
I think this can be an option "It forces centralized authentication and/or authorization".
The intercepting filter can do authentication/authorization.
Re: About Question enthuware.jwpv6.2.884 :
Posted: Sat Apr 30, 2016 8:32 pm
by admin
Yes, it can do authentication/authorization. But it doesn't force you to do so.
HTH,
Paul.
Re: About Question enthuware.jwpv6.2.884 :
Posted: Sun May 01, 2016 5:51 pm
by himaiMinh
Hi,
How about "it reduces coupling between presentation and business layers".
The intercepting filters are in the presentation layer, doing authentication and logging for example. The filters handle these kinds of tasks without affecting the business layers.
Re: About Question enthuware.jwpv6.2.884 :
Posted: Sun May 01, 2016 8:29 pm
by admin
I do not agree with that. If you do not use Front Controllers, you will still do authentication and logging in the presentation layer some other way. It doesn't affect the business layer.
You may read more about it here:
http://www.oracle.com/technetwork/java/ ... 42169.html
-Paul.