Hi,
I'm trying to read in some form data in a method that i called via a rendering-action element.
so i have that jsp with my form and a hidden field for the flow-key and my object id:
then the transition leads me to this view:Code:<form action="wizard" method="post"> <input type="hidden" name="_flowExecutionKey" value="${flowExecutionKey}" /> <input type="hidden" name="objectId" value="${sessionScope.object.objectId}" /> ...
and inside my objectController the getObjects method is successfully called. i tried to print out all entries of all maps stored in each scope or context i could access via the RequestContext object and i could not find my objectId from that hidden field.Code:<view-state id="feature" view="cpWizard/feature"> <render-actions> <action bean="createObjectController" method="getObjects"/> </render-actions> ...
how can i access that simple value?


Reply With Quote