Re: Possibile bug in MockHttpServletRequest

2012-12-14 Thread Martin Grigorov
one..thus session remain null. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Possibile-bug-in-MockHttpServletRequest-tp4340419p4654811.html Sent from the Users forum mailing list archive at Nabble.com

Re: Possibile bug in MockHttpServletRequest

2012-12-14 Thread Martin Grigorov
.. -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Possibile-bug-in-MockHttpServletRequest-tp4340419p4654823.html Sent from the Users forum mailing list archive at Nabble.com. - To unsubscribe, e

Possibile bug in MockHttpServletRequest

2012-01-30 Thread Giovanni Cuccu
Hello, I'm starting to user WicketTester and I've hit the following behaviour. I have a IRequestCycleListener wich needs to access to the httpSession. In my code I was using HttpSession httpSession=httpRequest.getSession(); which works fine within the real servlet container (i.e.

Re: Possibile bug in MockHttpServletRequest

2012-01-30 Thread Martin Grigorov
Hi, It looks like a bug. Please create a ticket. Thanks! On Mon, Jan 30, 2012 at 10:58 AM, Giovanni Cuccu giovanni.cu...@cup2000.it wrote: Hello,    I'm starting to user WicketTester and I've hit the following behaviour. I have a IRequestCycleListener wich needs to access to the httpSession.

Re: Possibile bug in MockHttpServletRequest

2012-01-30 Thread Giovanni Cuccu
Hi Martin, done. https://issues.apache.org/jira/browse/WICKET-4370 ciao, Giovanni In my code I was using HttpSession httpSession=httpRequest.getSession(); which works fine within the real servlet container (i.e. tomcat) but fails when I use WicketTester In order to make