RE: [OS-webwork] On storing values in actions

2003-07-28 Thread James Pan
[EMAIL PROTECTED] > Subject: Re: [OS-webwork] On storing values in actions > > > James, > It sounds like you don't understand how WebWork works. With > each new request > a new Action is created, so you can't do what you're asking. > You'd need to > make c

Re: [OS-webwork] On storing values in actions

2003-07-28 Thread Pat Lightbody
--- Original Message - From: "James Pan" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 28, 2003 6:54 AM Subject: RE: [OS-webwork] On storing values in actions Hello, > Ahh.. If the OgnlUtil does that, it should be logged as a bug. This is > if the para

RE: [OS-webwork] On storing values in actions

2003-07-28 Thread James Cook
> [mailto:[EMAIL PROTECTED] Behalf Of > James Pan > Sent: Monday, July 28, 2003 9:55 AM > What I want to is actually very simple: to allow some kind of > link with parameters, like > > .../mylink?parm1=hello&parm2=world > > but to allow for omitting parameters as I see fit... so after > that call a

RE: [OS-webwork] On storing values in actions

2003-07-28 Thread Konstantin Priblouda
> What I want to is actually very simple: to allow > some kind of link with parameters, like > > .../mylink?parm1=hello&parm2=world > > but to allow for omitting parameters as I see fit... > so after that call above, the data (parm1=hello and > parm2=world) should be stored somewhere, and then i

RE: [OS-webwork] On storing values in actions

2003-07-28 Thread James Pan
Hello, > Ahh.. If the OgnlUtil does that, it should be logged as a bug. This is > if the param is not in the params map at all, correct? That would > definitely be a bug. > > > > > I think he means that the action properties are being set to > > null by OgnlUtil.copy(map, object) > > > > I.e.

RE: [OS-webwork] On storing values in actions

2003-07-27 Thread Jason Carreira
IL PROTECTED] > Subject: RE: [OS-webwork] On storing values in actions > > > I think he means that the action properties are being set to > null by OgnlUtil.copy(map, object) > > I.e. I presume that he has action properties with defaults > compiled in, then th

RE: [OS-webwork] On storing values in actions

2003-07-27 Thread Cameron Braid
aults. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On > Behalf Of Jason Carreira > Sent: Monday, 28 July 2003 12:30 PM > To: [EMAIL PROTECTED] > Subject: RE: [OS-webwork] On storing values in actions > > > I'm not sure

RE: [OS-webwork] On storing values in actions

2003-07-27 Thread Jason Carreira
; To: [EMAIL PROTECTED] > Subject: [OS-webwork] On storing values in actions > > > Hello again, > > I have an action that contains several parameters (eg: > language, mode, and source, all string variables), and I have > a JSP page that renders differently depending on the three

[OS-webwork] On storing values in actions

2003-07-27 Thread James Pan
Hello again, I have an action that contains several parameters (eg: language, mode, and source, all string variables), and I have a JSP page that renders differently depending on the three parameters (so if language=fr I'll use the french text, etc). Now, after doing this: .../myaction?languag