Re: SAML and Wicket

2011-08-09 Thread Russell Pitre
How about wicket-auth-roles + spring security + spring security SAML extension. The documentation looks sparse on the spring security SAML extension, but I bet you could figure it out. Perhaps there is some sample code in the project source that you could take a look at. Not exactly the response

Incorrect resource urls when 404 occurs

2011-10-03 Thread Russell Pitre
Hi- Just upgraded to 1.5.1 from 1.4.18 and was not seeing this behavior described below. In our application, the Wicket filter and error page is setup in the web.xml like so: wicket.filter /app/* REQUEST ERROR 404 /app/404 In my WicketApplication class I am mounting the 404 [ *mountPage("

[SOLVED] Re: Incorrect resource urls when 404 occurs

2011-10-03 Thread Russell Pitre
the above method, all is well. -Russ On Mon, Oct 3, 2011 at 2:46 PM, Russell Pitre wrote: > Hi- > > Just upgraded to 1.5.1 from 1.4.18 and was not seeing this behavior > described below. > > In our application, the Wicket filter and error page is setup in the

CheckGroup losing state on invalid submission

2011-10-25 Thread Russell Pitre
I have a CheckGroup on a form that is losing it's state on invalid submission. Basically what is happening, I have another form element that is set to required = true. When that input isn't filled out correctly, the form doesn't pass validation, the screen is redrawn,and the state of check boxes i

Re: CheckGroup losing state on invalid submission

2011-10-25 Thread Russell Pitre
put ? > CheckGroup works fine there when I leave field "Input" empty. > > Sven > > -Ursprüngliche Nachricht- > Von: Russell Pitre [mailto:rpi...@gmail.com] > Gesendet: Dienstag, 25. Oktober 2011 17:14 > An: users@wicket.apache.org > Betreff: CheckGroup losin

AjaxFormComponentUpdatingBehavior broken after invalid submit

2011-10-27 Thread Russell Pitre
Wicket 1.5.1 I have a DropDownChoice with an AjaxFormComponentUpdatingBehavior("onchange") behavior attached to it, when a value is chosen in the dropdown the selected value is used to lookup data via a service call and then update other textfields in the form. This works great until you use the

Re: AjaxFormComponentUpdatingBehavior broken after invalid submit

2011-10-28 Thread Russell Pitre
Great! That's exactly what I needed. Thanks. -Russ On Fri, Oct 28, 2011 at 2:56 AM, Martin Grigorov wrote: > On Fri, Oct 28, 2011 at 7:22 AM, Hans Lesmeister 2 > wrote: > > Hi, > > > > did you already try a call to form.modelChanged() in onUpdate? > > form.modelChanging() is even more importa

Re: wicket appl architecture

2012-01-18 Thread Russell Pitre
Separate front-end sounds fine. Use a REST architecture with JSON as the data exchange format. I'm pretty Spring MVC supports this through the use Jackson JSON library. Its something to add to your list of possible options. On Wed, Jan 18, 2012 at 2:38 AM, nazeem wrote: > Hi > > I am currentl

Re: Trying get Spring security working

2012-01-18 Thread Russell Pitre
Look here for more info on Spring and logging. >From section 1.3.2.x of http://static.springsource.org/spring/docs/3.0.x/spring-framework-reference/html/overview.html org.slf4j jcl-over-slf4j 1.5.8 org.slf4j slf4j-api 1.5.8 org.slf4j

Access submit form values during validation

2012-04-24 Thread Russell Pitre
I have some logic that is called during validation and part of this logic is to determine the type of form submission based on a selected radio choice button. For instance, the user can choose "Still Updating" or "Final". When "Final" is selected the data moves on to the next step in a workflow and