Interesting problem. There is a question I have been wrestling with about whether Seam should make its contextual data directly available in HttpSession and HttpRequest attributes with the same name as the context variable, or whether it should keep stuff separate as it does presently (as you can see).
I think your usecase is quite reasonable; we need to allow people to set up some variables in a servlet filter. For now, a (very) hacky temporary workaround is to use: session.setAttribute( ScopeType.SESSION.getPrefix() + '$' + "loggedInUser", user ); View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3925063#3925063 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3925063 ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid=103432&bid=230486&dat=121642 _______________________________________________ JBoss-user mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jboss-user
