XRX/Content Routing

From Wikibooks, open books for an open world
< XRX
(Redirected from Content Routing)
Jump to navigation Jump to search

Motivation[edit | edit source]

You want all your XForms application to us a single save.xq submission. This makes it easier to autogenerate XForms applications and makes it easier to maintain insert and update operations in a central location.

Method[edit | edit source]

Create a single save XQuery that inspects the content of a POST operation. Use the name of the root element or other content patterns within the submitted XML file to process the incoming saved documents. Use a table-driven rule engine to determine if the incoming XML document is a new record (and requires a new ID assigned), an update (and requires versioning), or whether other business rules apply.


Back : User Manager Next: URL Rewriting