no, getattribute on session retrieves session attributes not request attributes, i guess you are stuck doing it how you are doing now

-igor

On 11/2/06, Marc-Andre Houle <[EMAIL PROTECTED]> wrote:
I all, I got a pretty simple question.  I got an attribute in the HttpServletRequest that is accessed this way :

RequestCycle rc  = getPage().getRequestCycle ();
WebRequest req = (WebRequest)rc.getRequest ();
Object o   = req.getHttpServletRequest ().getAttribute ("attribute");

The documentation of wicket say to "not" use, as possible, this way. 

The problem is that this attribute is set by a servlet Filter, not by another Wicket page.  So it is really in the request and I can't do anything about it.

I have found that there is a "getAttribute" method in the session.  Does it do the same thing as what I want?

Marc

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642

_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user



-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to