Re: Can't find Wicket ajax resources

2009-05-19 Thread Mark Sloan
Thank you. That was the cause of my problem. I think the //* got into our url mapping because we had a resources dir in our project, and the resources in it were not being found. So to fix the problem I have renamed our resources dir to uLandingResources and changed the url mapping from

Re: Can't find Wicket ajax resources

2009-05-19 Thread Jeremy Thomerson
At a glance it looks right, with the exception that your "/" is doubled up in the mapping. I don't think this would create your issue, but you should fix it and try again. -- Jeremy Thomerson http://www.wickettraining.com On Tue, May 19, 2009 at 11:47 AM, Mark Sloan wrote: > Here is the Wick

Re: Can't find Wicket ajax resources

2009-05-19 Thread Mark Sloan
Here is the Wicket portion of the my web.xml ULandingWicketApp org.apache.wicket.protocol.http.WicketFilter applicationClassName com.sri.uLanding.ULandingW

Re: Can't find Wicket ajax resources

2009-05-18 Thread Jeremy Thomerson
What's your web.xml mapping? -- Jeremy Thomerson http://www.wickettraining.com On Mon, May 18, 2009 at 6:41 PM, Mark Sloan wrote: > I am trying to do some basic Ajax in Wicket (1.4rc4) > I have the following code fragment: > > TextField loginField = new TextField("login", >             new Pr

Can't find Wicket ajax resources

2009-05-18 Thread Mark Sloan
I am trying to do some basic Ajax in Wicket (1.4rc4) I have the following code fragment: TextField loginField = new TextField("login", new PropertyModel(this, "login")); loginField.add(new AjaxFormComponentUpdatingBehavior("onblur") { private static final long serialVersi