Re: difference between Link(SomePage.class) and Link(new SomePage())

2007-11-02 Thread auron
f times. > > -igor > > On 11/2/07, auron <[EMAIL PROTECTED]> wrote: >> >> Hey all, >> >> Sorry to be the wicket newbie, but I was wondering if you guys could help >> me >> to understand how Links work. >> >> I understand that when yo

difference between Link(SomePage.class) and Link(new SomePage())

2007-11-02 Thread auron
Hey all, Sorry to be the wicket newbie, but I was wondering if you guys could help me to understand how Links work. I understand that when you do Link(SomePage.class), it calls the zero param constructor of SomePage, and when you do Link(new SomePage(someParams)) you can call other constructor

how do I add a feedback message to another page?

2007-10-26 Thread auron
Hi all, I have a LoginPage class that basically handles login through acegi. When a user is logged in, I have LoginPanel that shows some information about the user, an "Edit Profile" link and a "Logout" link. When the user clicks on logout, I have the following blocK: add(new Label("logoutDi

Re: spring acegi injection question

2007-10-22 Thread auron
ppreciated. Jin auron wrote: > > Hi Igor - > > Well, the filter was included with the wicket quickstart maven package, > and the servlet I copied from the wicket wiki. What should I change in the > filter? > > And, is it 'wrong' to have both servlet a

Re: spring acegi injection question

2007-10-20 Thread auron
u changed it for the servlet but not for the filter? why do you have > both defined? > > -igor > > > On 10/20/07, auron <[EMAIL PROTECTED]> wrote: >> >> Hi Igor - >> >> Thanks alot for your help, I really appreciate it - >> >> I knew I was

Re: spring acegi injection question

2007-10-20 Thread auron
g wrote: > > thats exactly how you do it, the piece you are missing is that you > need to tell wicket to pull your application object out of spring > context rather then create a new instance. see > SpringWebApplicationFactory and its javadoc. > > -igor > > > On 10

spring acegi injection question

2007-10-20 Thread auron
Hi everyone, On this page: http://cwiki.apache.org/WICKET/acegi-and-wicket-auth-roles.html there is a section that w/ the following code: public class WicketApplication extends AuthenticatedWebApplication { //to be injected by Spting private AuthenticationManager authenticat

Re: wicket-auth-roles updated for wicket 1.3 ?

2007-10-19 Thread auron
Damn, talk about a brain fart - Thanks Igor, much appreciated - Jin igor.vaynberg wrote: > > read the error message > > move that code from constructor to init() > > -igor > > > On 10/19/07, auron <[EMAIL PROTECTED]> wrote: >> >> Hi all - >

wicket-auth-roles updated for wicket 1.3 ?

2007-10-19 Thread auron
Hi all - I am trying to integrate wicket 1.3 beta 4, acegi security, and wicket-auth-roles. For the most part I followed the how-to on http://cwiki.apache.org/WICKET/acegi-and-wicket-auth-roles.html but modified it to use a simple Jdbc Dao for my authenticationDao. When I run the web-app I get

Re: maven-jetty-plugin error

2007-09-20 Thread auron
49.0) > > I am not sure which version this is, but I suggest you play with the > jetty-plugin version a bit. > > You can specify the version directly in your pom with the plugin in > the section, or in the pluginManagement section. > > Martijn > > On 9/21/07, au

maven-jetty-plugin error

2007-09-20 Thread auron
Hello everyone, (newbie alert!) Please forgive me if the contents of this message doesn't belong in wicket. I am new to maven, wicket, and jetty, so I am a bit unsure where to ask about my problem. I installed Java6 SDK, Maven 2.0.7. I then ran this as specified by Wicket's website: mvn arch