Hello
I am able to use an Ajax call to a struts action and with getInputForward() get
the get the data back. (With prototpye and json, very, very elegant). I am
now realizing that I have cases where I want to reprocess all components, i.e.
I want the actionForm to be updated and the jsp recalculated, I want the
session objects to be reprocessed so my iterate tags will show the updates,
etc. I understand how with getInputForward it doesnt happen. If I
setAttribute(), the original value that was processed when the form first
generated is all that ever shows. A simple findForward() does not force the
reprocessing,ie still the original values of the actionsForm members. Is there
a way to force a complete reprocessing the jsp from within an action? tia.