Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-11 Thread jWeekend
;> >>> > >> >> >>> >> >> >> ------------ >> >> >>> > C:\projects\test> >> >> >>> > >> >> >>> > 2009/10/6 richardwil

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-11 Thread danisevsky
gt;>> @ImplementedBy > >> >>> >> annotation (think its called that, check with the guice docs, > >> sending > >> >>> >> this > >> >>> >> from my phone so can't check atm). Afaik you would need to mak

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-11 Thread richardwilko
; >> >>> >> > >> >>> >> > //warp persist stuff >> >>> >> > install(PersistenceService.usingHibernate() >> >>> >> > .across(UnitOfWork.REQUEST) &g

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-09 Thread danisevsky
>>> >> > > >>> >> > try { > >>> >> > InitialContext context = new > InitialContext(); > >>> >> > connectionUrl = (String) > >>> >> > context.lookup("j

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-08 Thread Bert
:comp/env/hibernate.connection.password"); >>> >> >               } catch (NamingException e1) { >>> >> >                       // TODO Auto-generated catch block >>> >> >                       e1.printStackTrace(); >>> >> >          

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-08 Thread jWeekend
t; context.lookup("java:comp/env/hibernate.connection.url"); >> >> > username = (String) >> >> > context.lookup("java:comp/env/hibernate.connection.username"); >> >> > password = (String) >

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-08 Thread danisevsky
.setProperty("hibernate.connection.url", > >> connectionUrl); > >> > config.setProperty("hibernate.connection.username", > >> username); > >> > config.setProperty("hibernate.connection.password&quo

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-08 Thread richardwilko
alesCodesDao.class).to(HibernateCountrySalesCodesDao.class); >> > >> bind(AccountTypeDao.class).to(HibernateAccountTypeDao.class); >> > >> bind(AccountAuditDao.class).to(HibernateAccountAuditDao.class); >> > } >> > >> > @Singleton >> >

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-08 Thread danisevsky
October 06, 2009 2:56 PM > > To: users@wicket.apache.org > > Subject: RE: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, > > Hibernate ... projects > > > > > > Jeffrey, > > > > I expect the changes you made to the Guice Module are the rea

RE: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread richardwilko
blic static class Initializer { > @Inject > Initializer(com.wideplay.warp.persist.PersistenceService > service) { > service.start(); > } > } > } > > -Original Message- > From: richardwilko [

RE: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread Jeffrey Schneller
er { @Inject Initializer(com.wideplay.warp.persist.PersistenceService service) { service.start(); } } } -Original Message- From: richardwilko [mailto:richardjohnwilkin...@gmail.com] Sent: Tuesday, October 06, 2009 2:56 PM To: users@wi

RE: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread richardwilko
et.apache.org > Subject: Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, > Hibernate ... projects > > Hi Jeffrey, > > I have *absolutely* no idea if this will help you, but I had the same > with Spring. It started working when i put the injection annotation on >

RE: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread Jeffrey Schneller
09 2:09 PM To: users@wicket.apache.org Subject: Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects Hi Jeffrey, I have *absolutely* no idea if this will help you, but I had the same with Spring. It started working when i put the injection annotation on the method

RE: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread Jeffrey Schneller
icket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects Hi Jeffrey, I have *absolutely* no idea if this will help you, but I had the same with Spring. It started working when i put the injection annotation on the method instead of on the variable. Good luck, Erik On Tue, Oct 6, 2009 at

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread Erik Post
Hi Jeffrey, I have *absolutely* no idea if this will help you, but I had the same with Spring. It started working when i put the injection annotation on the method instead of on the variable. Good luck, Erik On Tue, Oct 6, 2009 at 7:59 PM, Jeffrey Schneller wrote: > I took the archetype for Gui

RE: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread Jeffrey Schneller
I took the archetype for Guice, Warp, Hibernate and modified for my application. All my code looks similar to the code from the archetype. The only difference is I am not using the AnnotatinConfiguration but just the plain Configuration. I am also using c3po connection pooling with Oracle. Ho

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread jWeekend
Erik, No such prejudice here: a Wicket with EJB 3+ archetype is a very good idea and I was already planning on us setting up an archetype for JBoss and wicket-javaee [1] (that "contrib" library just works by the way - we've used it with no problems so far on a couple of projects, one with JBoss -

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread Erik Post
Hi Cemal, On Tue, Oct 6, 2009 at 5:05 PM, jWeekend wrote: > Thanks. We'll review that soon - it  is our intention but we need to be > ready to take care of the project. Just for the moment, we'll take on ideas > for new archetypes, and feel free to contact me via our site if you have > some part

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread jWeekend
Erik, Thanks. We'll review that soon - it is our intention but we need to be ready to take care of the project. Just for the moment, we'll take on ideas for new archetypes, and feel free to contact me via our site if you have some particular ideas and need stuff included quickly. Ideas for furt

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread nino martinez wael
Caused by: java.text.ParseException: Tag '' (line 101, column 1) has a mismatched close tag at '' (line 102, column 1) is the issue, your html are broken.. Regarding tomcat compability, I've deployed over dozens of apps the last 4-5 years or so on Tomcat 5.5 .. 2009/10/6 Gw > Hi, > > I'm a newb

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread Gw
Hi, I'm a newbie in Wicket. I use Databinder toolkit (wicket+hibernate) to help me develop DB application rapidly. With the built-in Jetty, the development is quite smooth, however, when trying to run my app on Tomcat 5.5 (Java 5), I faced the following error. I wonder if wicket is really compatib

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread nino martinez wael
You could always contribute to Wicket Iolite :) Which essentially are the same, or Wicketopia http://wicketopia.sourceforge.net/ http://wicketstuff.org/confluence/display/STUFFWIKI/Wicket-Iolite 2009/10/6 Erik Post > Hey, that's great! Is there any way to contribute to this? > > Thumbs up, > Er

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread Erik Post
Hey, that's great! Is there any way to contribute to this? Thumbs up, Erik > 2009/10/6 jWeekend > > We have launched jWeekend's Leg Up page [1]. > > You can generate a command and run it at your console to create a simple > project using one of our archetypes. The projects you will generate will

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread Md. Jahid Shohel
seems like its working now. really cool! On Tue, 2009-10-06 at 16:01 +0200, Md. Jahid Shohel wrote: > On Tue, 2009-10-06 at 14:47 +0100, jWeekend wrote: > > http://jweekend.com/dev/LegUp > > is that really working? coz , when i clicked on "Generate Maven Command" > button, it took me to http

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread jWeekend
Jahid, Thanks - a little Tomcat PERM_GEN issue. Should be OK now, but at the next scheduled restart we'll bump it up a bit. Regards - Cemal jWeekend OO & Java Technologies, Wicket Training and Development http://jWeekend.com Jahid wrote: > > On Tue, 2009-10-06 at 14:47 +0100, jWeekend wro

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread richardwilko
Nino, We don't have a Guice 2.0 for that very reason; the warp persist guys don't have a final 2.0 release yet. Regards - Richard Wilkinson Developer, jWeekend: OO & Java Technologies - Development and Training http://jWeekend.com nino martinez wael wrote: > > Why dont you have a Guice 2.0 a

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread James Perry
Nice one Cemal! I will have to use leg up to get a leg over setting up Wicket projects ;-) Best, James. On Tue, Oct 6, 2009 at 2:47 PM, jWeekend wrote: > We have launched jWeekend's Leg Up page [1]. > > You can generate a command and run it at your console to create a simple > project using one

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread nino martinez wael
Works for me.. I took the guice warp persist + etc archetype.. 2009/10/6 Md. Jahid Shohel > On Tue, 2009-10-06 at 14:47 +0100, jWeekend wrote: > > http://jweekend.com/dev/LegUp > > is that really working? coz , when i clicked on "Generate Maven Command" > button, it took me to http://jweekend.co

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread nino martinez wael
Why dont you have a Guice 2.0 archetype? We could probably bump the warp persist guys to work on their 2.0 imp.. If thats whats stopping you? 2009/10/6 nino martinez wael > Looks cool :) > > 2009/10/6 jWeekend > > We have launched jWeekend's Leg Up page [1]. >> >> You can generate a command and

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread nino martinez wael
Looks cool :) 2009/10/6 jWeekend > We have launched jWeekend's Leg Up page [1]. > > You can generate a command and run it at your console to create a simple > project using one of our archetypes. The projects you will generate will > include enough configuration, code and/or some tests to get yo

Re: Leg Up for Wicket, Spring, Guice, JPA, Warp, EclipseLink, Hibernate ... projects

2009-10-06 Thread Md. Jahid Shohel
On Tue, 2009-10-06 at 14:47 +0100, jWeekend wrote: > http://jweekend.com/dev/LegUp is that really working? coz , when i clicked on "Generate Maven Command" button, it took me to http://jweekend.com/dev/HomePageBody - To unsubscr