Re: [Wicket-user] possible to access wicket session via jsp?

2007-05-03 Thread Benjamin Ranck
Yep, I was over thinking things all I needed was: WicketSessionFilter /pages/index.jsp simple simple. Cheers, Benjamin On 5/3/07, Eelco Hillenius <[EMAIL PROTECTED]> wrote: > org.apache.wicket.protocol.http.servlet.WicketSessionFilter > > Eelco > > On 5/3/07, Johan Compagne

Re: [Wicket-user] possible to access wicket session via jsp?

2007-05-03 Thread Eelco Hillenius
org.apache.wicket.protocol.http.servlet.WicketSessionFilter Eelco On 5/3/07, Johan Compagner <[EMAIL PROTECTED]> wrote: > if you use the wicket filter then in a jsp (if the filter is in the jsp > chain) > then you should be able to do: Session.get() to get the session.. > > johan > > > > On 5/3/0

Re: [Wicket-user] possible to access wicket session via jsp?

2007-05-03 Thread Johan Compagner
if you use the wicket filter then in a jsp (if the filter is in the jsp chain) then you should be able to do: Session.get() to get the session.. johan On 5/3/07, Benjamin Ranck <[EMAIL PROTECTED]> wrote: This is obviously a horrible hack to take care of a short term problem, but is it possibl

[Wicket-user] possible to access wicket session via jsp?

2007-05-02 Thread Benjamin Ranck
This is obviously a horrible hack to take care of a short term problem, but is it possible, using WicketSessionFilter to access the wicket session within a JSP? Any ideas on what the mapping would be? Thanks, Benjamin - This