Re: serializing nested lists

2012-04-26 Thread Ankur Srivastava
You can write custom logic just make a setter something like public void setIdLists (ArrayList ids) { //here you can break the ids using some loop } this might not be the best solution but can be one of the solutions On Fri, Apr 27, 2012 at 2:13 AM, Scott Koenig wrote: > If my action has > > pr

RE: StrutsTestCase, jUnit and file upload

2012-04-26 Thread Steve Higham
Thanks to Chris, Gabriel for your comments. I finally got this to work yesterday. A neat solution probably requires refactoring StrutsTestCase and deriving a new class (StrutsMultipartTestCase) from it. In the meantime the following changes will work subject to a couple of limitations: - This onl