I have a struts 2 form in which I collect some user information: name, surname, address... under a session variable.
In the same form, the user has a link to create a "workgroup", for what I have an <a href="<s:url action='YYY' namespace='/ZZZ'>"> linkX </a>
(I use s:submit to target a different action)
So, the problem is: the user fills some information, then she clicks on the link to create a new workgroup and when she returns to the previous page,
the data she entered is lost! (it seems data is not stored in session...)
I see the problem is using the href element to redirect to another action (data is not being transfered) but I can't figure out how to fix it, so any help, tip, advice, recommendation...
would be so much appreciated!!