Re: Spring?

2008-05-21 Thread cwilkes
Bruce McGuire-2 wrote: > > There are aspects (no pun intended) of Spring that we like, but are unsure > if the benefits (AOP, IOC) are worth the added effort. > If you use the @SpringBean annotation in your Wicket classes there's not really any added effort at all. Everytime I add one of thes

Re: WicketTester in spring, question about springinjection

2008-04-25 Thread cwilkes
Sarkast wrote: > > > protected void init() { > super.init(); > mount("/pages", PackageName.forPackage(Login.class.getPackage())); > // commented out for testing > addComponentInstantiationListener(new SpringComponentInjector(this)); > } > You could do somethin

Re: Hibernate with wicket

2008-04-10 Thread cwilkes
tbt wrote: > > Can anyone tell me the list of jar files that are needed to run > databinder. I am having trouble running the baseball example. > Have you tried running "mvn package"? -- View this message in context: http://www.nabble.com/Hibernate-with-wicket-tp16607352p16609086.html Sent fr

IBM Developerworks article comparing Wicket and Tapestry

2008-04-10 Thread cwilkes
http://www.ibm.com/developerworks/java/library/os-tapestrywicket/index.html?ca=drs- If there's one take home message from it it is in the conclusion: "If you try to avoid using XML, or if you just like object-oriented programming, Wicket could be your choice for day-to-day use. A richer extensio

Re: Wicket And EasyMock

2008-02-24 Thread cwilkes
See this post on the easymock sourceforge bug page: http://sourceforge.net/tracker/index.php?func=detail&aid=1895630&group_id=82958&atid=567840 carloc wrote: > > Hi I'm trying to use wicketTester and FormTester together with easymock. > I seem to be getting a lot of notserializableexceptions

Re: How to Apache tomcat wicket setup?

2008-02-05 Thread cwilkes
Look at "Exclusions" on the documentation page: http://tomcat.apache.org/connectors-doc/reference/uriworkermap.html Chris Penn wrote: > > Previously, when using a struts application we would just say *.jsp is > forward to tomcat. How to do this with wicket as we don't have any > specific file

Re: jetty and eclipse

2008-01-01 Thread cwilkes
Fernando Wermus-2 wrote: > > Application class > web.SignIn2Application must be a subclass of WebApplication > Is SignIn2Application a subclass of WebApplication? -- View this message in context: http://www.nabble.com/jetty-and-eclipse-tp14572549p14572917.html Sent from the Wicket - User m

isVisible called before onBeforeRender

2007-11-12 Thread cwilkes
I had code in onAttach() that set a field that was read in isVisible(). Now with onAttach removed I put this code in the onBeforeRender() method. However internalBeforeRender() calls isVisible() before onBeforeRender(). The fix was pretty easy -- move that code into isVisible(). However I'm no

Re: WicketTester and Page parameters & Wicket Example Unit tests?

2007-09-12 Thread cwilkes
wicket user wrote: > > 1) I've got a page that gets hit by an outside credit card merchant once > they have validated the card, they post me my transaction ID along with a > whole host of other parameters. Getting them from the request is easy in > the > page itself but trying to unit test it is

Re: DIV TAG HEADER DO NOT WORK IN WICKET

2007-09-06 Thread cwilkes
UR RIGHT. THE DIFFERENCE BETWEEN XHTML AND HTML IS THAT ATTRIBUTES MUST BE QUOTED: http://www.w3.org/TR/xhtml1/#diffs Nino Saturnino Martinez Vazquez Wael wrote: > > hmm should'nt it be in "" or '' like this: > ? > > regards Nino > > bhupat parmar wrote: >> THE HEADER IS NOT WORKING >> >>

Re: {wicket 1.3 beta 2} Wicket spring annotat troubles..

2007-08-11 Thread cwilkes
Also I would look in the server's common/lib and other directories. And do a "mvn clean" to clean out any old jars that might be in the local target/ directory. Looking that maven's logs there a "org.springframework:spring:jar:2.0" in there. I'm not sure when the createConcurrentMapIfPossible m