Re: communication between control layer & factory/model

2003-10-13 Thread Adam Hardy
Yes, looked at that, seems the most elegant solution, at least until I get my hands on commons messages - I did something like this: HashMap results = factory.updateAll(conn, users); msg = new ActionMessage("userAdmin.status.savedEmail", "" + results.get(factory.EMAIL_RESULTS_KEY),

RE: communication between control layer & factory/model

2003-10-12 Thread Navjot Singh
can't you pass a HashMap back? >-Original Message- >From: Adam Hardy [mailto:[EMAIL PROTECTED] >Sent: Saturday, October 11, 2003 6:42 PM >To: Struts Users Mailing List >Subject: communication between control layer & factory/model > > >I've been happy until now passing objects backwards and

Re: communication between control layer & factory/model

2003-10-11 Thread Craig R. McClanahan
Adam Hardy wrote: On 10/11/2003 04:31 PM Ted Husted wrote: How about the Commons MessageResources? http://jakarta.apache.org/commons/sandbox/resources/index.html We ported the message collection over there for precisely this reason. :) HTH, Ted. That seems to fit the spec perfectly! One

Re: communication between control layer & factory/model

2003-10-11 Thread Adam Hardy
On 10/11/2003 04:31 PM Ted Husted wrote: How about the Commons MessageResources? http://jakarta.apache.org/commons/sandbox/resources/index.html We ported the message collection over there for precisely this reason. :) HTH, Ted. That seems to fit the spec perfectly! Thanks Adam -- struts 1.1 +

Re: communication between control layer & factory/model

2003-10-11 Thread Ted Husted
How about the Commons MessageResources? http://jakarta.apache.org/commons/sandbox/resources/index.html We ported the message collection over there for precisely this reason. :) HTH, Ted. Adam Hardy wrote: I've been happy until now passing objects backwards and forwards between my actions and