Re: 3.5 Hibernate 1.1 tutorial wicketized/eclipseized

2010-07-04 Thread David Brown
Hello, I put the hib-tut.zip file in my gmail uploaded files in a directory called uploads. I don't know what u need to do to get to my uploaded files on gmail. :-David. On Sat, 2010-07-03 at 10:29 -0700, rmh1981 wrote: David Brown wrote: i have a wicketized/eclipseized hibernate 1.1

Re: Transparent resolver parent child working but cannot add third component

2009-09-09 Thread David Brown
Hello Pedro, I have since resolved this issue. I was trying to use an existing WebPage class fired from the WebPage attached to the submenu class. Eventually, I relented and allowed the constructor inside the submenu WebPage to call the needed private method by refactoring the target WebPage

Re: StackOverFlow (Start.java) Jetty

2009-09-08 Thread David Brown
.. would you mind posting some code so we can see what you are trying to accomplish and how? ** Martin 2009/9/8 David Brown dbr...@sexingtechnologies.com: Hello Martin, converting the WebPage to Panel foments no complaints until RunTime where all of the upstream markup is re-included in the downstream

Re: The alternative to: HeaderContributor.forCss

2009-09-08 Thread David Brown
to: HeaderContributor.forCss The replacement for the deprecated method is written in the JavaDocs. http://wicket.apache.org/docs/1.4/org/apache/wicket/behavior/HeaderContributor.html -- Jeremy Thomerson http://www.wickettraining.com On Mon, Sep 7, 2009 at 10:18 PM, David Brown dbr...@sexingtechnologies.comwrote

Re: StackOverFlow (Start.java) Jetty

2009-09-07 Thread David Brown
- From: Martin Makundi martin.maku...@koodaripalvelut.com To: users@wicket.apache.org Sent: Sunday, September 6, 2009 10:54:47 PM GMT -06:00 US/Canada Central Subject: Re: StackOverFlow (Start.java) Jetty What is AjaxFallbackLinkExtension? ** Martin 2009/9/6 David Brown dbr

Re: StackOverFlow (Start.java) Jetty

2009-09-07 Thread David Brown
Hello Martin, converting the WebPage to Panel foments no complaints until RunTime where all of the upstream markup is re-included in the downstream onClick() request. the usual complains are made: cannot find the component to the paired wicket markup. The component has already been fired by

The alternative to: HeaderContributor.forCss

2009-09-07 Thread David Brown
Hello, something I have been ignoring for a long time is in the subject line. Though my IDE tells me it is deprecated I have not see a good alternative anywhere (wicketstuff, google, etc.). All of my CSS is in several files and directories under one directory named: style. What is a good

StackOverFlow (Start.java) Jetty

2009-09-06 Thread David Brown
Hello, I have class (a.java) that extends WebPage and has the usual Wicket HTML counterpart (a.html). The extended WebPage class' constructor, a(), creates a WebMarkupContainer wrapper instance transparent resolver with the name: wrapper. Before I add(wrapper) I add an AjaxFallBackLink:

Re: Article in german Javamagazin

2009-09-02 Thread David Brown
JSF, JSP, ASP, PHP et. al. is the reason I am using Wicket. There are 10 kinds of people in this world: those who understand binary and those who don’t (Valid only for 2's complement). - Original Message - From: Peter Ertl pe...@gmx.org To: users@wicket.apache.org Sent: Wednesday,

Re: WicketByExample.com - Soft launch and we need editors

2009-08-07 Thread David Brown
I have been back to the site with the target in mind to look for the wicketbyexample wish-list. But, the cupboard was bare. Any plans? - Original Message - From: Andrew Lombardi and...@mysticcoders.com To: users@wicket.apache.org Sent: Friday, August 7, 2009 1:08:50 AM GMT -06:00

WicketNotSerializableException

2009-07-29 Thread David Brown
Hello, I have a small show-stopper with a WicketTester testcase and a Wicket Page. The Wicket Page is a concrete Class extending WebPage. I am calling a simple private method: init() that is nested within the Page constructor. Inside the init() method I have an anonymous inner class constructed

Re: WicketNotSerializableException

2009-07-29 Thread David Brown
Hello Jeremy, thanks for the reply. Please find the requested WebPage included below. At the cost of looking somewhat contrived I had to edit to keep the Lawyers happy. Yes, you're right (again), there are plenty of references outside the declaration but those also got: implements Serializable

Re: WicketTester and org.slf4j.LoggerFactory and org.slf4j.Logger not serializable

2009-07-28 Thread David Brown
Hello Jeremy, thanks for the reply. Painfully obvious now (doh!). David. - Original Message - From: Jeremy Thomerson jer...@wickettraining.com To: users@wicket.apache.org Sent: Monday, July 27, 2009 7:52:57 PM GMT -06:00 US/Canada Central Subject: Re: WicketTester and

WicketTester and org.slf4j.LoggerFactory and org.slf4j.Logger not serializable

2009-07-27 Thread David Brown
Hello, I have a Wicket 1.4rc4 application with a homegrown set of JDBC DAO classes: basic JDBC Connection and various methods for SQL queries and transactions. And Connection pooling is imported into the same JDBC DAO class and works well against the JUnit TestCases. The JUnit TestCases for the

Re: Mix generic HTML for Wicket

2009-06-16 Thread David Brown
Hello Igor, thanks for the reply. If I browse the repo at: http://wicket-stuff.svn.sf.net/svnroot/wicket-stuff only shows ghosted folders for: attic, sandbox, etc. The sourcecode is not available for check out. Please advise, David. - Original Message - From: Igor Vaynberg

Re: Mix generic HTML for Wicket

2009-06-09 Thread David Brown
Hello Igor, I have an account on wicketstuff and I see the list of wicketstuff projects that have been so-called: move to attic or deleted. I don't see how to acquire wicketstuff-crud if it has not been deleted. I have a wicket-crud.war. I could de-compile the .war. If decompilation of the .war

WicketRuntimeException: Unable to initialize org.apache.wicket.extensions.Initializer

2009-06-09 Thread David Brown
Hello Wicket bunch, I have basically usurped all of the Datatable example from the wicket-examples.repeater folder. The result builds OK but as you see in the subject line a nasty RTE. I have Googled and mail-listed this issue but not much comes up. If anyone can shed some light please advise,

Re: WIA ch 13 DAO creation (just a lot of cheese?)

2009-06-02 Thread David Brown
...@carmanconsulting.com To: users@wicket.apache.org Sent: Monday, June 1, 2009 9:39:32 PM GMT -06:00 US/Canada Central Subject: Re: WIA ch 13 DAO creation (just a lot of cheese?) Does Test extend DomainObject? On Mon, Jun 1, 2009 at 10:32 PM, David Brown dbr...@sexingtechnologies.com wrote: Hello wicket

WIA ch 13 DAO creation (just a lot of cheese?)

2009-06-01 Thread David Brown
Hello wicket bunch, I have a curious situation using the WIA ch13 DAO/hibernate code. When I try to introduce a third class aptly named: Test in the domain and a DAO interface named: TestDao and then a class: TestDaoImpl I get the unresolvable Error: ***

Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-30 Thread David Brown
can, of course, do it any other way you like - including installing jetty eclipse launcher plugin. -igor On Fri, May 29, 2009 at 3:17 PM, David Brown dbr...@sexingtechnologies.com wrote: Hello Igor, thanks for the reply. Can I just ignore the QuickStart embedded jetty and install

Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-30 Thread David Brown
different? window/preferences/compiler/building - remove *.html from output folder/filtered resources -igor On Sat, May 30, 2009 at 2:09 PM, David Brown dbr...@sexingtechnologies.com wrote: Hello Luther, thanks for the informative and speedy reply. I'm going to take things one-step-at-a-time. So

Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-29 Thread David Brown
Hello Martin, Jeremy, dev, gurus, users and mortals. I have just finished ch. 13 of the WIA.pdf. I have followed closely the reading using the wicket-in-action eclipse project. I have the wicket-in-action running under the: mvn jetty:run. The wicket-in-action project is redeployed every 60

Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-29 Thread David Brown
, that way you get debug and hotswap - which should be the real student's dream :) -igor On Fri, May 29, 2009 at 2:53 PM, David Brown dbr...@sexingtechnologies.com wrote: Hello Martin, Jeremy, dev, gurus, users and mortals. I have just finished ch. 13 of the WIA.pdf. I have followed closely

Re: Wicket Quickstart vs WIA eclipse projects: why so different?

2009-05-29 Thread David Brown
student's dream :) -igor On Fri, May 29, 2009 at 2:53 PM, David Brown dbr...@sexingtechnologies.com wrote: Hello Martin, Jeremy, dev, gurus, users and mortals. I have just finished ch. 13 of the WIA.pdf. I have followed closely the reading using the wicket-in-action eclipse project. I have

Re: Misfunctionality in WIA source code

2009-05-26 Thread David Brown
Hello, did you ever resolve the issue with the book code?. I am on chapter 5.x in the WIA and I have posted a couple of issues but no response here either. David. - Original Message - From: HHB hubaghd...@yahoo.ca To: users@wicket.apache.org Sent: Sunday, May 17, 2009 7:09:57 AM GMT

Re: How to test for a redirect after form submit, eg. setting RedirectRequestTarget?

2009-05-26 Thread David Brown
Hello, if you don't get a Wicket solution you might want to try real-time testing for re-direction using something like the Apache JMeter: http://jakarta.apache.org/jmeter/ - Original Message - From: Jörn Zaefferer joern.zaeffe...@googlemail.com To: Wicket Users

Re: DownloadLink (Javadoc)

2009-05-26 Thread David Brown
from source via 'mvn javadoc:javadoc' or by issuing 'mvn eclipse:eclipse - DdownloadJavadocs=true' which will get the Javadoc and adjust your Eclipse classpath to link it up. cheers, Steve On 25/05/2009, at 10:54 PM, David Brown wrote: Hello, it just so happens I have been looking

Re: DownloadLink

2009-05-25 Thread David Brown
Hello, it just so happens I have been looking for Wicket Javadoc. the Wicket jar I have contains no javadoc. Please reply with the source of the Wicket javadoc you are referencing. Please advise, David. There are 10 kinds of people in this world: those who understand binary and those who don’t

Stump the WIA newbie

2009-05-25 Thread David Brown
Hello Wicket dev, gurus, users and mortals, I am on page 123 of the wia.pdf. The 5.8 listing displays an exercise to migrate the: new Link() to: new AjaxFallbackLink() for both the Add and Delete links. I was successful on both points mentioned in the previous sentence. However, I was not

Re: Pre-built wicket sample app for a starter to copy?

2009-05-12 Thread David Brown
Hello, please excuse if the wicket-security project is readily visible. Otherwise, reply with the link. Much appreciated. Regards, David. There are 10 kinds of people in this world: those who understand binary and those who don’t (Valid only for 2's complement). - Original Message -

Re: Pimp your Wicket app!

2009-05-07 Thread David Brown
Hello, my Wicket app is still in alpha dev. Closer to reality I'm still trying to migrate the backend from MSSQL 2005 to MySQL embeddable. The entire project is just a pilot to see if I get the job. The current running enterprise web app to be replaced is a concoction of hundreds of

Re: Maven setup

2009-05-06 Thread David Brown
Hello Frank, I can't answer all the questions but... * I'm a 10+ year nearly Java only developer. I was initially very impressed with databinder but the only real support for databinder I could find is @: http://code.google.com/p/wicket-web-beans/ * I have 1.3.5 running in Eclipse (Ganymede)

Wicket in Action vs the other main books

2009-04-10 Thread David Brown
Hello Wicketers, I am in the throes of a decision to buy the Wicket in Action book. There are a couple of other books but the little time I have lurked on this ML I have noticed the Wicket-in-Action authors are fielding some of the issues on this list. The reason I need to hit Wicket as hard as

Re: Wicket in Action vs the other main books

2009-04-10 Thread David Brown
easy. Regards, Erik. David Brown schreef: Hello Wicketers, I am in the throes of a decision to buy the Wicket in Action book. There are a couple of other books but the little time I have lurked on this ML I have noticed the Wicket-in-Action authors are fielding some of the issues

Re: Wicket in Action vs the other main books

2009-04-10 Thread David Brown
10, 2009 at 12:31 PM, David Brown dbr...@sexingtechnologies.com wrote: Hello Erik, thanks for the speedy and informative reply. I just acquired the Tong PDF and I will cruise by BN and pick-up the WIA book. The databinder.net may be LGPL but I do not see any source-code repo: SVN, HG, etc. so

Re: Communication between applications, one using wicket

2009-04-09 Thread David Brown
Hello Cristi, this is typically referred to as diparate sytems communications issue. In the past I have had some success between such sytems using a WSDL and messaging. I did not have a lot of time so I opted for the Apache Axis2 framework (http://ws.apache.org/axis2/). You will have to do some

Re: Communication between applications, one using wicket

2009-04-09 Thread David Brown
. On Thu, Apr 9, 2009 at 8:59 AM, John Krasnay j...@krasnay.ca wrote: On Thu, Apr 09, 2009 at 07:48:10AM -0500, David Brown wrote: Hello Cristi, this is typically referred to as diparate sytems communications issue. In the past I have had some success between such sytems using a WSDL

Re: Wicket Noob: Long cannot be cast to java.lang.String

2009-04-08 Thread David Brown
field. What do you want to test a range? Or max value of that long? Use a different validor On 08/04/2009, David Brown dbr...@sexingtechnologies.com wrote: Hello Wicket dev, gurus and mortals, I was successfully using Wicket to build the UI for my new web-app gig. I have studied the javadoc

Wicket Noob: Long cannot be cast to java.lang.String

2009-04-07 Thread David Brown
Hello Wicket dev, gurus and mortals, I was successfully using Wicket to build the UI for my new web-app gig. I have studied the javadoc: org.apache.wicket.markup.html.form, org.apache.wicket.MarkupContainer and others until bleary-eyed. The web-page I am using will display correctly the values