URL change to /ops/xforms-server-submit when form is submit

classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

URL change to /ops/xforms-server-submit when form is submit

quinquin2209
Hi All,

I have follow the "Using the Orbeon Forms XForms Engine with Java Applications" to setup the ops such that XForm can be used in external war.

The xform can be displayed correctly through my external war. In this xform, there is a submit button and corresponding xforms:submission as follow:

<xforms:submission id="save-submission" ref="instance('doc-instance')"
        action="http://localhost:8080/test/save/save.action"  method="post">
</xforms:submission>

<xforms:submit submission="save-submission">
<xforms:label>Save</xforms:label>
</xforms:submit>

When the submit buttion is clicked, the http://localhost:8080/test/save/save.action is called as expected. However, the browser URL changes to http://localhost:8080/ops/xforms-server-submit.

Is it possible to remains the browser URL to the action I called?

Thanks in advance

Queenie