Hello Ralf,
with the next version 3.1.3 it will be easy to save the values of input parameters within a session context. We will provide a variable context which will solve this problem. Request parameters are automatically stored within the variable context and can be addressed by a tag ?getvar?.
For X-Application 3.1.2, you could manually do these steps.
(1) Before the module tag evaluated the request parameter, store its values within the JSP page object. For example
<BR><%<BR> String myParamValue = request.getParameter("myParam?); <BR> page.setAttribute(?myParamValue?, myParamValue != null ? myParamValue : ??);<BR>%><BR></pre><BR><BR>(2) Use value of the attribute as default for the input tags of the parameter. For example<BR><BR><pre class="ip-ubbcode-code-pre"><BR><input name=?myParam? value=?<% out.print(page.getAttribute(?myParamValue?); %>?><BR>
page, request and out are predefined objects (variables) for JSP pages.
Hope, this helps you.
Bye,
Christian.
#webMethods#Tamino#API-Management