Reputation: 59
I am a new user of orbeon and am trying to some exercise with orbeon's code. I have downloaded orbeon source code from git. I have made a war file (with ant orbeon-dist-war) and placed it in tomcat. Everything is working fine. Then I follow the tutorial and make "my-bookcast" application mentioned there.I found the application source code at "/WEB-INF/resources/apps/my-bookcast" and I know which database is used and where the data are saved. But my questions are
Update: Can anyone tell me, if I want to see the data stored in exist-db then how can I do this. I heard about oxygen, which can be used as a exist-db browser. In that case where can I found the exist-db related configuration in orbeon to connect with the built-in exist-db?
Upvotes: 0
Views: 535
Reputation: 960
Graphical view
After clicking, you will get this popup and that's the source
Upvotes: 0
Reputation: 7857
Out of the box, the form definitions and form data are stored into the embedded eXist database. The source code you can see directly from Form Builder, with "Edit Source".
No.
Regarding the question in your update: you can disable the orbeon-exist-filter
eXist security filter in web.xml
, then should be able to connect with oXygen either via exist-xmlrpc-servlet
or exist-rest-servlet
which is mounted on /exist/rest/*
.
Upvotes: 2