Hello,
within your page ‘home.jsp’ you are using an action within a form context with document name ‘login’.
<xapp:form document="login">
...
<xapp:action type="create" schema="request">
...
</xapp:action>
</xapp:form>
</pre><BR><BR>Therefore, the document you create will have the name 'login'. Within your page 'orderer.jsp' you access to a document without name since you do not define the document attribute of the form tag.<BR><BR>In this case, the name 'current' is used to look for a document with this name.<BR><BR>My propose, give your document a new name because 'login' is not sufficient, call 'currentOrderer' for instance. Use this name within your home.jsp.<BR><BR><pre class="ip-ubbcode-code-pre">
<xapp:form document="login">
...
<xapp:action type="create" schema="request" document="currentOrderer">
...
</xapp:action>
</xapp:form>
</pre><BR><BR>Within your orderer.jsp you must set the document attribute of the xapp:form tag<BR><BR><pre class="ip-ubbcode-code-pre">
<xapp:form document="currentOrderer">
...
</xapp:form>
Bye,
Christian.
#API-Management#webMethods#Tamino