Re: Wicket and Guice / legup / warp persist?

2010-04-28 Thread nino martinez wael
Yes it should work on 1.4.x I believe.. Regarding the method question, I think it has something todo with that the ldm gets serialized and the dao does not get reloaded on deserialization. 2010/4/28 Douglas Ferguson doug...@douglasferguson.us: Does this work on the 1.4.6 version of wicket? D/

Re: Wicket and Guice / legup / warp persist?

2010-04-27 Thread Douglas Ferguson
The solution is using injection on the method? D/ On Apr 26, 2010, at 4:30 AM, nino martinez wael wrote: I found out that If I injected in the constructor, when using inmethod grid hibernate would complain about a closed session. So solved it as the pastebin shows.. 2010/4/26 nino

Re: Wicket and Guice / legup / warp persist?

2010-04-27 Thread Douglas Ferguson
Does this work on the 1.4.6 version of wicket? D/ On Apr 26, 2010, at 4:30 AM, nino martinez wael wrote: I found out that If I injected in the constructor, when using inmethod grid hibernate would complain about a closed session. So solved it as the pastebin shows.. 2010/4/26 nino

Re: Wicket and Guice / legup / warp persist?

2010-04-26 Thread nino martinez wael
I do it like this : http://pastebin.com/wcZ8XANh public class InjectorHolder { private static Injector injector; public InjectorHolder() { } @Inject public static void setInjector(Injector injector) { InjectorHolder.injector =

Re: Wicket and Guice / legup / warp persist?

2010-04-26 Thread nino martinez wael
I found out that If I injected in the constructor, when using inmethod grid hibernate would complain about a closed session. So solved it as the pastebin shows.. 2010/4/26 nino martinez wael nino.martinez.w...@gmail.com: I do it like this : http://pastebin.com/wcZ8XANh public class

Re: Wicket and Guice / legup / warp persist?

2010-04-25 Thread Douglas Ferguson
Anybody have tips on the correct way to do this? On Apr 24, 2010, at 5:42 PM, Douglas Ferguson wrote: I'm curious about how this would work with serialization/deserialization. For instance, with a data provider where would you actually put this: InjectorHolder.getInjector().inject(this)

Re: Wicket and Guice / legup / warp persist?

2010-04-25 Thread Jeremy Thomerson
I also updated the exception message in commit 937854. -- Jeremy Thomerson http://www.wickettraining.com On Thu, Apr 8, 2010 at 7:26 AM, Martin Grigorov mcgreg...@e-card.bg wrote: The ticket for this is https://issues.apache.org/jira/browse/WICKET-2761 The fix is applied to 1.4.x at 13/03

Re: Wicket and Guice / legup / warp persist?

2010-04-24 Thread nino martinez wael
BTW if anyone has trouble with this until 1.4.8 comes out then just write your own injectorholder class and in your guice module call requeststatic injection on that.. Works like a charm.. 2010/4/8 nino martinez wael nino.martinez.w...@gmail.com: Ahh typical :) And thanks for the update.

Re: Wicket and Guice / legup / warp persist?

2010-04-24 Thread Douglas Ferguson
Interesting... I've been curious about how to properly use injection in data provider as this does not subclass component. Any tips on how to get this to work? D/ On Apr 24, 2010, at 12:32 PM, nino martinez wael wrote: BTW if anyone has trouble with this until 1.4.8 comes out then just

Re: Wicket and Guice / legup / warp persist?

2010-04-24 Thread Douglas Ferguson
I'm curious about how this would work with serialization/deserialization. For instance, with a data provider where would you actually put this: InjectorHolder.getInjector().inject(this) To make sure it gets called at the appropriate times? Is it ok to put it in the constructor of the data

Wicket and Guice / legup / warp persist?

2010-04-08 Thread nino martinez wael
Hi I revived my old wicket talk yesterday and since we are using guice at the company where Im at now the people attending the talk wanted to see my examples in guice / wicket instead of spring / wicket. So I used the legup archetype. Which worked nicely until I did a ldm which I had to inject a

Re: Wicket and Guice / legup / warp persist?

2010-04-08 Thread Cemal Bayramoglu
Nino, It looks like the message you are getting is misleading; probably the refactoring out of the Wicket IOC module (which both Wicket's Guice and Spring modules sit on top of now) missed changing that exception's text. InjectorHolder has not been assigned is caused by Wicket's Guice

Re: Wicket and Guice / legup / warp persist?

2010-04-08 Thread nino martinez wael
Thanks for the reply Cemal. Writing inline.. 2010/4/8 Cemal Bayramoglu jweekend_for...@cabouge.com: Nino, It looks like the message you are getting is misleading; probably the refactoring out of the Wicket IOC module (which both Wicket's Guice and Spring modules sit on top of now) missed

Re: Wicket and Guice / legup / warp persist?

2010-04-08 Thread Martin Grigorov
The ticket for this is https://issues.apache.org/jira/browse/WICKET-2761 The fix is applied to 1.4.x at 13/03 by Juergen. 1.4.7 was released at 03/03. So, it will be included in next release - probably 1.4.8. On Thu, 2010-04-08 at 11:08 +0200, nino martinez wael wrote: Hi I revived my old

Re: Wicket and Guice / legup / warp persist?

2010-04-08 Thread nino martinez wael
Ahh typical :) And thanks for the update. 2010/4/8 Martin Grigorov mcgreg...@e-card.bg: The ticket for this is https://issues.apache.org/jira/browse/WICKET-2761 The fix is applied to 1.4.x at 13/03 by Juergen. 1.4.7 was released at 03/03. So, it will be included in next release - probably