Reviewing the code, I don't think it is an issue
private final boolean checkAsis() throws JspTagException {
if (getMethod() == AuthenticationData.METHOD_ASIS) {
session = request.getSession(false);
if (session != null) {
cloud = (Cloud) session.getAttribute(getSessionName());
}
if (cloud == null) {
setAnonymousCloud();
}
if (cloud != null) {
checkValid();
}
checkCloud();
return true;
}
return false;
}
Nicp
Michiel Meeuwissen wrote:
Nico Klasens wrote:
Update of /var/cvs/applications/taglib/src/org/mmbase/bridge/jsp/taglib
In directory
james.mmbase.org:/tmp/cvs-serv29947/applications/taglib/src/org/mmbase/bridge/jsp/taglib
Modified Files:
CloudTag.java
Log Message:
I could be wrong, but I think the setAnonymousCloud should be inside the if
statement
I'm not sure either, but I think that might be wrong, because the
'checkAsis' is perhaps falling back on this anonymous cloud, if no
session or no cloud in session.
Michiel
_______________________________________________
Developers mailing list
[email protected]
http://lists.mmbase.org/mailman/listinfo/developers