Re: Url-Parameters only set once

2008-04-08 Thread Dave Newton
--- me <[EMAIL PROTECTED]> wrote: > Yes of course that's what I thougt. But when I change the scope of the > spring bean to default I could provide the id using a get request but > nothing happens. > > Now I keep it on prototype which is okay for this page. S2 assumes a new action will be creat

Re: Url-Parameters only set once

2008-04-08 Thread me
EMAIL PROTECTED] Sent: Sunday, April 06, 2008 1:19 PM To: Struts Users Mailing List Subject: Re: Url-Parameters only set once Hello Dave, I've found a solution for that. The spring-action was standard-scoped and in cause of that it didn't accept the id parameter a second time. I think it

RE: Url-Parameters only set once

2008-04-07 Thread Eric Nelson
Ah, you're right. Thanks for the correction. --Eric -Original Message- From: Dave Newton [mailto:[EMAIL PROTECTED] Sent: Monday, April 07, 2008 9:29 AM To: Struts Users Mailing List Subject: RE: Url-Parameters only set once --- Eric Nelson <[EMAIL PROTECTED]> wrote: > Y

RE: Url-Parameters only set once

2008-04-07 Thread Dave Newton
--- Eric Nelson <[EMAIL PROTECTED]> wrote: > You CAN set the property to a different value every time. Most of my > action beans implement this behavior just fine. Did you make sure your > action bean implements the ParameterAware interface? This binds your > action bean properties to the curren

RE: Url-Parameters only set once

2008-04-07 Thread Eric Nelson
-Original Message- From: Marc Ende [mailto:[EMAIL PROTECTED] Sent: Sunday, April 06, 2008 1:19 PM To: Struts Users Mailing List Subject: Re: Url-Parameters only set once Hello Dave, I've found a solution for that. The spring-action was standard-scoped and in cause of that it didn't acc

Re: Url-Parameters only set once

2008-04-06 Thread Marc Ende
Hello Dave, I've found a solution for that. The spring-action was standard-scoped and in cause of that it didn't accept the id parameter a second time. I think it's a little bit strange that it's impossible to set an property again when it's done before. Marc Dave Newton schrieb: --- M

Re: Url-Parameters only set once

2008-04-06 Thread Dave Newton
--- Marc Ende <[EMAIL PROTECTED]> wrote: > I've got a list with several items which are linked to a details-action. > If I klick on an item after the restart of the webapp a link like > http://.../details.action?id=123 > is called. Everything is fine. I can see the correct details site. > When I go