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!

link|improve this question

fnst, are you using the 3.9 release, or a nightly build? If the latter, this would explain why your configuration isn't working as the way the persistence layer is configured changed after 3.9 was was released. – avernet Nov 30 '11 at 18:48
@avernet, I'm using the stable 3.9 release. I've tried also the new configuration with defining an own provider, if you mean this. But it doesn't worked, too. Is there any configuration which overrides the properties-local.xml? – fnst Dec 1 '11 at 7:47
OK, in what app is your form? If you are using one of the sample app and form name (say orbeon/bookshelf), the more specific mapping defined in properties-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:03
Thank you, but I have no specified properties-form-runner.xml. After I created it, Orbeon seems to using eXist not longer. Now Orbeon tries to send a request to default localhost: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:46
1  
It is normal you don't have a properties-form-runner.xml in your config directory. That file is one of the Orbeon Forms jar files, because you are not supposed to change it. Instead, you change properties-local.xml, and whatever properties you define there override the defaults defined in properties-form-runner.xml. The only interest for you to look at properties-form-runner.xml is to see what the default values are. But again, I recommend you don't copy that file in your resources/config. – avernet Dec 3 '11 at 2:34
show 7 more comments
feedback

1 Answer

up vote 1 down vote accepted

The configuration is correct, but it only applies to forms using the Form Runner persistence layer. While it is possible to use the Form Runner persistence layer with forms you write in XForms "by hand", typically it will only be used by the forms you create with Form Builder.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.