Re: Wicket 1.5.8 + EJB 3.1 - strange problem

2012-11-24 Thread Satrix
Cause Im eager to learn new things :) Regards, Satrix -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-8-EJB-3-1-strange-problem-tp4653977p4654128.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Wicket 1.5.8 + EJB 3.1 - strange problem

2012-11-23 Thread Paul BorČ™
Why don't you instead use a bigger and more robust IoC framework like Spring and a persistence framework you can trust like Hibernate? Check out: http://wicketinaction.com/2009/06/wicketspringhibernate-configuration/ Have a great day, Paul Bors On Nov 19, 2012, at 8:39 AM, Satrix

Re: Wicket 1.5.8 + EJB 3.1 - strange problem

2012-11-19 Thread Martin Grigorov
Hi, I don't use Wicketstuff-javaee and I have no idea what could be the problem. But I want to tell you that there are several releases of this project after 1.5-RC1: http://central.maven.org/maven2/org/wicketstuff/wicketstuff-javaee-inject/1.5.9/. Note the different groupId. On Sun, Nov 18,

Re: Wicket 1.5.8 + EJB 3.1 - strange problem

2012-11-19 Thread Satrix
Hello Martin, I'll check this out today and let you know if it helps. Regards, Satrix -- View this message in context: http://apache-wicket.1842946.n4.nabble.com/Wicket-1-5-8-EJB-3-1-strange-problem-tp4653977p4653990.html Sent from the Users forum mailing list archive at Nabble.com.

Re: Wicket 1.5.8 + EJB 3.1 - strange problem

2012-11-19 Thread Satrix
Unfortunately even after changing the version of the wicketstuff-javaee-inject to newer version the problem still exists. What's more interesing is that when I navigate over the page (everything except back button) the @Stateful bean works. Only back button click recreates the @Stateful bean

Re: Wicket 1.5.8 + EJB 3.1 - strange problem

2012-11-19 Thread Martin Grigorov
https://github.com/aldaris - this is the guy who made this contribution On Mon, Nov 19, 2012 at 3:16 PM, Satrix satrix...@gmail.com wrote: Unfortunately even after changing the version of the wicketstuff-javaee-inject to newer version the problem still exists. What's more interesing is that

Re: Wicket 1.5.8 + EJB 3.1 - strange problem

2012-11-19 Thread Wujek Srujek
If the container returns the correct bean, this means your login works fine, is this correct? Why do you then care that the @Stateful-annotated field is different? It probably is just a proxy generated by your container's injection framework anyways. On Mon, Nov 19, 2012 at 2:16 PM, Satrix

Re: Wicket 1.5.8 + EJB 3.1 - strange problem

2012-11-19 Thread Satrix
Nope. Look at the example: 1. User has chose to add a product to the Cart (so now the cart number is 1 and he can see that number in a proper place on the page). 2. Now when he clicks back button - bean is recreated - so the cart number is 0 (list is recreated). 3. BUT now when I click on any

Wicket 1.5.8 + EJB 3.1 - strange problem

2012-11-18 Thread Satrix
Hello, Im using Wicket 1.5.8 + EJB 3.1. To configure Wicket with EJB Im using: dependency groupIdorg.wicketstuff/groupId artifactIdjavaee-inject/artifactId version1.5-RC5.1/version /dependency Everything seemed to work when I was using only @Stateless beans. But now, it's the time that