Hi David,
thanks again for your time!
There is only one instance of your realm that is shared by all incoming
requests. That mean only local values inside methods are individual.
Every property that is stored at instance of class level is to be
accessed and stored in a ThreadSafe manner. It's u
There is only one instance of your realm that is shared by all incoming
requests. That mean only local values inside methods are individual.
Every property that is stored at instance of class level is to be
accessed and stored in a ThreadSafe manner. It's up to you code to be
Threadsafe by assuming
Salut David,
thanks very much for your answer!
public SecurityConstraint[] findSecurityConstraints(Request request,
Context context) {
HttpServletRequest req = request;// catch Request
session = req.getSession(); // catch session
ipAddress = req.ge
En l'instant précis du 21/09/07 10:09, Franck Borel s'exprimait en ces
termes:
>
> public SecurityConstraint[] findSecurityConstraints(Request request,
> Context context) {
>
> HttpServletRequest req = request;// catch Request
> session = req.getSession(); // c