Hi All

I'm wondering if theres a way to pass a list of values as a parameter in a redirectAction. For instance:

   <action name="WorkAction" class="test.WorkAction">
           <result name="success" type="redirectAction">
               <param name="actionName">ViewAction</param>
               <param name="myList">${myList}</param>
               <param name="myProperty">${myProperty}</param>
           </result>
       </action>


In this case, myList is an array list that is populated in WorkAction. ViewAction then has a setter for an Array List of the same name. myProperty is just a string.

This doesn't work as it stands, I get a string representation of the array instead of the array passed. So in the ViewAction instead of a 2 item array, I get a single item array with a string like:

   "[TEST A, TEST B]"

While this is certainly parsable, I was wondering if theres a way to handle this with something already built into struts. I'm also aware that it's possible to solve this using the session, but I was curious if theres a way to avoid doing it that way.

Thanks,
Tim O


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to