I'm using Orbeon Forms 3.9 CE. To save the form data into a relational db, I decided to implement my own REST service. But now, when I tried to configure it in Orbeon, it doesn't worked.
I created the properties-local.xml in /WEB-INF/resources/config like this:
<properties xmlns:xs="http://www.w3.org/2001/XMLSchema"
xmlns:oxf="http://www.orbeon.com/oxf/processors">
<property as="xs:anyURI"
name="oxf.fr.persistence.app.uri.*.*.*"
value="http://localhost:8090/orb-form-persistence/FormPersistence"/>
</properties>
After server restart, when I try to submit data to a form, Orbeon nevertheless uses eXist instead of my service.
Any tips for me? Thanks!
properties-local.xml? – fnst Dec 1 '11 at 7:47orbeon/bookshelf), the more specific mapping defined inproperties-form-runner.xml(you can see those mapping towards the end of github.com/orbeon/orbeon-forms/blob/3.9-ce-stable/src/…) for those forms will take the precedence over the one your defined. Are you by any chance hitting that case? – avernet Dec 2 '11 at 2:03properties-form-runner.xml. After I created it, Orbeon seems to using eXist not longer. Now Orbeon tries to send a request to defaultlocalhost:8080. Is it helpful for you, if I post some logs? | I've added to the 'XForms Hello' example some new fields and a save submission. With eXist it has worked very well. – fnst Dec 2 '11 at 9:46properties-form-runner.xmlin yourconfigdirectory. That file is one of the Orbeon Forms jar files, because you are not supposed to change it. Instead, you changeproperties-local.xml, and whatever properties you define there override the defaults defined inproperties-form-runner.xml. The only interest for you to look atproperties-form-runner.xmlis to see what the default values are. But again, I recommend you don't copy that file in yourresources/config. – avernet Dec 3 '11 at 2:34