Submissions Extensions
- Read-only XForms instances with xxf:readonly
- HTTP authentication
- HTTP headers forwarding
- Loading indicator
- Specifying an HTML target window or frame with the xxf:target attribute
- Replacing other instances with the xxf:instance attribute
- Enabling XInclude processing with the xxf:xinclude attribute
- Preventing recalculation before a submission
- Submitting non-XML content
- The "echo:" URL scheme
- Local submissions (deprecated)
Read-only XForms instances with xxf:readonly
Orbeon Forms supports an extension attribute, xxf:readonly
, on the <xf:instance>
and true
, this attribute signals that once loaded, the instance is read-only, with the following consequences:
- The instance is loaded into a smaller, more efficient, read-only data structure in memory.
- Instance values cannot be updated, no Model Item Properties (MIPs) can be assigned with
<xf:bind>
to the instance, and the read-only MIP is set totrue
for all the nodes in the instance. But a read-only instance can be replaced entirely by an<xf:submission replace="instance">
. - When using client-side state handling, less data might be transmitted between server and client.
Read-only instances are particularly appropriate for loading internationalization resources, which can be large but don't change.
Example:
<xf:instance
id="resources-instance"
src="/forms/resources/en"
xxf:readonly="true"/>
The xxf:readonly
attribute on <xf:instance>
determines if the instance is read-only until that instance is being replaced.
After an instance is replaced, it can be read-only or not irrelevant of the of xxf:readonly
on <xf:instance>
. When the instance is replaced, the replaced instance is read-only if and only if the <xf:submission>
that does the replacement has a attribute xxf:readonly="true"
.
When this attribute is set to true on <xf:submission>
and if the targetref
attribute is specified, the replacement target must be an instance's root element.
HTTP authentication
Username, password and domain
The <xf:submission>
and<xf:instance>
elements support optional attributes to specify HTTP authentication credentials:
xxf:username
: HTTP authentication usernamexxf:password
: HTTP authentication passwordxxf:domain
: domain for NTLM authentication
If xxf:username
is missing or empty, the other authentication attributes are ignored.
If you specify the xxf:username
without the xxf:password
, the password defaults to an empty string.
<xf:submission
id="save-submission"
ref="instance('my-instance')"
method="put"
resource="/exist/rest/ops/my-file.xml"
replace="none"
xxf:username="admin"
xxf:password=""/>
NOTE: On <xf:instance>
, the attribute is statically-defined. On <xf:submission>
, it is an AVT and can therefore be dynamic.
Preemptive authentication
By default, the username and password are provided preemptively to the connection. In this mode, the HTTP client "will send the basic authentication response even before the server gives an unauthorized response in certain situations, thus reducing the overhead of making the connection" (HttpClient documentation).
The xxf:preemptive-authentication
attribute on <xf:submission>
and <xf:instance>
elements allows controlling this feature. You can disable this feature by setting the property to false
:
<xf:submission xxf:preemptive-authentication="false" ...>
NOTE: On <xf:instance>
, the attribute is statically-defined. On <xf:submission>
, it is an AVT and can therefore be dynamic.
HTTP headers forwarding
NOTE: As of Orbeon Forms 4.9, oxf.xforms.forward-submission-headers
is deprecated. Use oxf.http.forward-headers
instead. For backward compatibility, header names from both properties are combined into a single set of header names. It is no longer possible to specify per-form forwarding headers using xxf:forward-submission-headers
.
HTTP requests initiated by <xf:submission>
and <xf:instance>
can automatically forward incoming HTTP headers. Two properties are looked at in order:
- The local, XForms-specific oxf.xforms.forward-submission-headers property. [DEPRECATED]
- The global Orbeon Forms oxf.http.forward-headers property (used only as a default if the XForms property is not set).
Both properties contain a space-separated list of header names to forward:
<property
as="xs:string"
name="oxf.xforms.forward-submission-headers"
value="Orbeon-Client Authorization SM_USER"/>
oxf.xforms.forward-submission-headers
can also be set on a per-page basis on your first model element: [REMOVED as of Orbeon Forms 4.9]
<xf:model
xxf:forward-submission-headers="Orbeon-Client Authorization SM_USER">
...
</xf:model>
Whenever an HTTP request must be performed, the XForms engine looks at this list of header names and it forwards the header value if the following conditions are met:
- There is an incoming header with that name, i.e. either the HTTP request causing the XForms page to load or the XForms Ajax request to run contains that header.
- There is no author-specified header with the same name in an
<xf:header>
element within<xf:submission>
.
Forwarding the Authorization
or other authentication-related headers can be useful to propagate authentication credentials to other services.
NOTE: The Authorization
header is treated specially: if a username is specified on the submission with xxf:username
, then this header is not forwarded.
SECURITY NOTE: Forwarding authentication-related headers may cause a security risks when communicated with non-trusted servers. Use carefully!
Loading indicator
When an <xf:submission>
with replace="all"
is executed, in general, the browser will load another page. While this happens, the loading indicator, by default shown in red at the top right of the window, is displayed. However, when the browser is served not a web page but say a ZIP file, the browser might ask you in you want to download it, and then stay in the current page. When this happens, the loading indicator does not go away.
In those cases where you know that the target page does not replace the current page, you can prevent the loading indicator from being displayed by adding the xxf:show-progress="false"
attribute:
<xf:submission xxf:show-progress="false"/>
Similarly the xxf:show-progress="false"
attribute can be used with the xf:load
action:
<xf:load xxf:show-progress="false"/>
Specifying an HTML target window or frame with the xxf:target attribute
You can use the xxf:target
attribute on both <xf:submission>
and xf:load
. It behaves just like the HTML target attribute. When used on <xf:submission>
, it only makes sense to use this attribute when you have replace="all"
. Using this attribute to load a page in a new page is a case where you should add the xxf:show-progress="false"
attribute.
Replacing other instances with the xxf:instance attribute
On an <xf:submission>
element with replace="instance"
, the optional instance
attribute specifies a destination instance for the result. That attribute is processed like the instance()
function, which means that the instance specified must be in the current model.
The xxf:instance
extension attribute can be use instead of the standard instance
attribute. It works like instance
, except that the instance is searched globally among all models. xxf:instance
is to the instance
attribute what the xxf:instance()
function is to the standard instance()
function.
<xf:submission
id="my-submission"
method="post"
resource="http://example.org/"
replace="instance"
xxf:instance="my-instance"/>
Enabling XInclude processing with the xxf:xinclude attribute
On an <xf:submission>
element with replace="instance"
, the optional xxf:xinclude
attribute specifies whether XInclude processing should be performed on the XML document returned, before storing it into the destination instance. The default is false
.
<xf:submission
id="my-submission"
method="post"
resource="http://example.org/"
replace="instance"
xxf:xinclude="true"/>
Preventing recalculation before a submission
XForms 1.1 provides two attributes to control pre-submission tasks:
validate
: "indicates whether or not the data validation checks of the submission are performed".relevant
: "indicates whether or not the relevance pruning of the submission is performed"
Orbeon Forms adds the following attribute:
xxf:calculate
: indicates whether or not recalculation must take place
The default value is "false" if the value of serialization is "none" and "true" otherwise.
The purpose of the attribute is to improve performance when multiple submission are called serially. The form author can this way completely prevent the rebuild
, recalculate and revalidate flags from being checked before submitting data:
<xf:submission
ref="instance()"
method="post"
validate="false"
relevant="false"
xxf:calculate="false"
.../>
WARNING: This attribute must be used with caution, as using it might mean you submit information that is out of date.
Here is how Orbeon Forms performs the rebuild, recalculate and revalidate operations before a submission:
- Perform rebuild if:
- the deferred flag for
rebuild
is set - and the data to submit belongs to an instance (as opposed to a non-instance XML node)
- and either of the effective value of the validate, relevant or xxf:calculate attributes is true
- the deferred flag for
- Perform recalculate if:
- the deferred flag for
recalculate
is set - and the data to submit belongs to an instance (as opposed to a non-instance XML node)
- and either of the effective value of the relevant or xxf:calculate attributes is true
- the deferred flag for
- Perform revalidate if:
- the deferred flag for
revalidate
is set - and the data to submit belongs to an instance (as opposed to a non-instance XML node)
- and the final effective of the validate attribute is true
- the deferred flag for
The "effective value" for the validate, relevant and xxf:calculate attributes is the value after considering:
- each attribute's default value
- resolution of AVTs
Submitting non-XML content
Submitting text content
Orbeon Forms supports sending the text content of an XML document as per XSLT 2.0 and XQuery 1.0 Serialization. To perform a text submission:
- The
post
orput
method is required. - You must use a the
text/plain
value for theserialization
attribute.
<xf:instance id="instance">
<text>
This contains some text. The<b>string value</b>of the document will be sent
</text>
</xf:instance>
...
<xf:submission
id="save-submission"
ref="instance()"
method="post"
serialization="text/plain"
replace="none"
resource="http://example.com/foo.text"/>
...
Submitting HTML or XHTML content
Orbeon Forms supports sending an XML document as HTML or XHTML as per XSLT 2.0 and XQuery 1.0 Serialization. To perform a HTML or XHTML submission:
- The
post
orput
method is required. - You must use a the
text/html
or theapplication/xhtml+xml
value for theserialization
attribute.
<xf:instance id="instance">
<html>
<head>
<title>My page</title>
</head>
<body>
<p>Cool HTML!</p>
</body>
</html>
</xf:instance>
...
<xf:submission
id="save-submission"
ref="instance()"
method="post"
serialization="text/html"
replace="none"
resource="http://example.com/foo.html"/>
...
Submitting binary content
XForms 1.1 does not explicitly support submitting binary content, but does not prohibit it either. Orbeon Forms supports sending the content of a binary resource specified by a URI. Such resources are easily obtained with <xf:upload>
, for example. To perform a binary submission:
- The
post
orput
method is required. - You must use application/octet-stream as
serialization
attribute. - The node referred to by the submission must be of type
xs:anyURI
. - Relative URLs are supported and resolved as service URLs against the
<xf:submission>
element.
<xf:instance id="attachment">
<attachment>
file:/Users/jdoe/Applications/apache-tomcat-5.5.20/temp/xforms_upload_30877.tmp
</attachment>
</xf:instance>
<xf:bind ref="instance('attachment')" type="xs:anyURI"/>
...
<xf:submission
id="save-submission"
ref="instance('attachment')"
method="put"
serialization="application/octet-stream"
replace="none"
resource="http://example.com/foo.bin"/>
...
Alternatively, you can set the type information using the xsi:type
attribute:
<xf:instance id="attachment">
<attachment xsi:type="xs:anyURI">
file:/Users/jdoe/Applications/apache-tomcat-5.5.20/temp/xforms_upload_30877.tmp
</attachment>
</xf:instance>
The "echo:" URL scheme
Submissions support a special "echo:" URL scheme which returns the data that was submitted. This is useful for tests.
NOTE: Previously, the undocumented "test:" scheme had the same effect. It is still supported for backward compatibility.
Example:
<xf:submission
id="my-submission"
ref="instance()"
method="post"
action="echo:"
replace="instance"
instance="result"/>
Local submissions (deprecated)
Status
As of Orbeon Forms 4.7 and newer, this feature is usually not relevant as Orbeon Forms handles service requests internally. See issue #1363.
Rationale
XForms pages can make heavy use of services through the use of <xf:submission>
. A service is primarily identified by a URL.
- Sometimes a service is remote (on a machine other than the machine on which Orbeon Forms is installed), in which case the URL is necessarily an absolute URL starting with
http://
orhttps://
. - But often services are implemented within Orbeon Forms itself, not only on the same server but within the same web application. In the case of such local submission, Orbeon Forms provides a special optimized mode which has the following benefits:
- No actual HTTP connection is initiated, so performance is likely to be better.
- There is no need to deal with absolute URLs such as
http://localhost:8080
, especially when proxies or firewalls are in place.
For more information, see also the configuration properties related to submissions.
Enabling local submissions
Orbeon Forms performs a local submission if:
- The URL specified is not a absolute, i.e. does not start with
http://
orhttps://
. - The submission is not asynchronous. (This restriction may be lifted in the future.)
- In a servlet environment:
- The submission has
replace="all"
(which is the default if noreplace
attribute is specified) and theoxf.xforms.local-submission-forward
property is set totrue
(which is the default). - The submission has
replace="instance"
,replace="text"
orreplace="none"
and theoxf.xforms.local-submission-include
property is set totrue
(the default isfalse
).
- The submission has
- In a portlet environment:
- The
f:url-norewrite
attribute is not set totrue
. - The
f:url-type
attribute is not set toresource
.
- The
NOTE: The portlet logic above is likely to be revised in the future. Also note that in the case of optimized submissions within portlets, requests are made directly to the Orbeon Forms portlet and do not use servlet forward/include.
Context resolution
In a servlet environment, paths are resolved as follows:
- If
f:url-norewrite
is not set totrue
, the resource is resolved against the current servlet context. - If
f:url-norewrite
is set totrue
, the resource is resolved against the servlet container root. This allows accessing other web applications within the same servlet container.
Say your application is under context /orbeon
, and you have a second web application under context /foo
.
This submission calls `/orbeon/bar
:
<xf:submission
replace="all"
method="post"
resource="/bar"/>
This submission calls `/foo/bar
:
<xf:submission
replace="all"
method="post"
resource="/foo/bar"
f:url-norewrite="true"/>
Limitations of includes
With:
replace="instance"
replace="text"
replace="none"
optimized submission are implemented using the servlet container's include mechanism, which does not automatically build path information for the included resource.
In this case, Orbeon Forms is therefore unable to provide proper "servlet path" and "path info" information. Orbeon Forms handles this situation in the following way:
- A blank (
""
) "servlet path" is provided. - The "path info" contains the entire path provided, instead of the path following the servlet path.
This may cause some application which rely on the "servlet path" information to behave incorrectly. For example, consider the eXist REST servlet:
- It is mounted as
/exist/rest
within Orbeon Forms. - eXist (quite properly) expects any path following
/exist/rest
to be a path into the database, e.g./exist/rest/db/orbeon
produces a path called/db/orbeon
. - If Orbeon Forms calls the eXist REST servlet with a blank servlet path and a path info containing
/exist/rest/db/orbeon
, eXist obviously obtains an incorrect database path.
NOTE: In short you must be careful when using local includes. The good news is that if you are using servlets which do not depend on path information as explained above, or if you have control over the implementation of the services you are calling, then you can most likely work around this limitation.
Local forwards are not subject to that limitation.