eXist-db is an open source database management system built using XML technology. It stores XML data according to the XML data model and features efficient, index-based XQuery processing.
0
votes
2answers
25 views
XPath-Query with wildcard not working
It is driving me crazy.
Can someone tell me why this query does not work:
xquery version "3.0";
for $item in collection("openkernel/openehr_ehr/archetyped/")
let $uid:=$item//uid/value
where ...
0
votes
0answers
26 views
How to force exist to retrieve an HTML file “as is”, not adding <?xml and not merging </-s?
Does anybody know how to force exist to retrieve an HTML file "as is", not adding <?xml and not merging </-s?
Even wikipedia wikipedia says:
Include an extra space in empty-element tags: for ...
0
votes
1answer
24 views
get default libraries exist-db to use with exide
I would Like to change the default database path in exist-db (currently /db/) where the collections are stored. I would Like it to be /home/username/db , for example.
I can not find this setting in ...
0
votes
1answer
25 views
Best way to use Orbeon as a REST service
I have a set of XForms already running within eXist-db that are automatically generated by an XQuery. Is there any way form me to call a REST service, supplied by Orbeon, running on a separate tomcat ...
0
votes
1answer
22 views
Upgrade Orbeon 3.8 - 4.1
We are using Orbeon 3.8 in a standard config with eXist database.
Is there a way tot easy upgrade the db to the new 4.1, and have the saved data (forms and data) available in the new version?
0
votes
0answers
72 views
How do I connect my application to eXist-DB
i've created a c# application that is effectively a workflow system that moves XML documents around folder structures depending on their status, among other things.
What i'd now like to do is use a ...
0
votes
0answers
88 views
Best way to store large data contains xml files used for full text search and making reports/charts [closed]
I have worked on over 1 terabyte XML files(same structure) and grow quickly. Now i want to use those data to build a desktop-base application (C#) for full text search and make some reports. I plan to ...
0
votes
0answers
73 views
Is there a .net client fot eXist-db?
Is there a .net client for exist-db? I have to use exist-db in my graduate project and any help will be appreciated.
0
votes
0answers
138 views
Accesing XML with XQIB, javascript and Xquery (using eXist db)
i have downloaded XQIB to can call xquery from javascript, cause i need to call xquery functions with onclick events (and i can't do it if the document has .xql extension)
so i downloades XQUIB and ...
0
votes
1answer
117 views
In XQuery, with eXist, how to get the child collections of the current collection?
The problem
I have a query that gets executed by eXist through the REST API, and it gets POSTed to the collection it needs to run on, e.g. /db/foo or /db/bar. In the query, I'd like to get the child ...
2
votes
0answers
140 views
exist-db rest post files with PHP
Is it possible to push new xml / update files in exist-db through PHP?
I've had a look around for an example but the only one I could really find was this ...
0
votes
1answer
49 views
xquery full search text of children
Is it possible to do a search for a key words in an exist-db using xquery?
I've tried using
//foo//@val[. &= $param]
But this returns an error because this isn't supported with my version of ...
0
votes
1answer
183 views
xquery parameter query
I'm trying to query an exist-db with xquery by taking parameters from the URL and building up seach parameters
xquery version "1.0";
declare namespace request="http://exist-db.org/xquery/request";
...
0
votes
1answer
91 views
xpath multiple condition and return root
Is it possible to do a 'and' condition in xpath like
//foo/bar/test[@val='hello'] and //foo/bar/new[@val='world']
This condition returns true for some reason and not any results. I've tried | but I ...
0
votes
2answers
158 views
To remove the node but keep the value inside intact through XQuery
I have a content.xml modelled as below
<root>
<childnode>
Some text here
</childnode>
</root>
I am trying to remove the <childnode> and update the content.xml ...
0
votes
1answer
74 views
eXist db bibliographic demo source code [closed]
Does anyone know if the eXist db provides the source code for the bibliographic demo ( the one at ...
0
votes
0answers
114 views
Is there a way to extend a Jetty login session for some users?
My eXist-db system comes with Jetty configured with BASIC Authentication but the timeout seems to be fixed by the Jetty configuration file for all users. I am trying to find out how to extend the ...
0
votes
1answer
255 views
XQuery- will a single file or multiple files would be good in any XML DB
I am having an huge XML file containing the Resumes. This file is in two format viz-
A single master file containing all the Resumes for ex-
<Resumes>
<Resume>
...
-1
votes
1answer
433 views
Upload file to eXist-db using Java
I'm writing an application which allows for uploading a file to a specific collection in eXist-db. I am basing this application off code I found on the eXist web site.
Unfortunately, the code does ...
1
vote
1answer
52 views
In eXist, how can I run an expression on a dynamically determined collection?
I have a query that dynamically determines a collection name and an expression to evaluate on that collection that return a boolean. Say:
$my-collection points to the collection, e.g. containing the ...
4
votes
4answers
327 views
How to expose large collection of XML documents (~2M) for offline querying (xpath)?
I have just short of 2 million XML documents sitting on 16gb of file system space. They are all valid and share a single DTD. They are all of roughly equal size (all generated by the same lab ...
0
votes
1answer
831 views
accessing eXist db through Java
I need to develop an online assessment system for evaluating xqueries. I am trying to use eXist db xml database. I am developing the web app in Java, struts2 and apache tomcat server.
How can i upload ...
1
vote
5answers
3k views
ExistDB vs Marklogic vs Sedna performance [closed]
Has anyone done a comparison of the following technologies? I am an open source lover, but i would definitely like to know and give it a shot. My user base on the client side is going to approx 1500 ...
1
vote
0answers
422 views
Xquery HTML with Javascript Issue [closed]
I am trying to plot some data using jschart.
I am able to do that with the following code without any issues.
<head>
<title>Plot</title>
<script ...
1
vote
2answers
379 views
Which is better for storing XML, MongoDB or eXistDB?
Currently I am doing a document processing software and it will be store as XML format and the size of the database will expand. So I will like to know will it be better to store into MongoDB or stick ...
0
votes
1answer
64 views
XQuery stripping comments from the XML
I am using an xml database (eXist) and I am retrieve XML Documents from this database. The problem that I am facing is that any xml comments in the xml are stripped out. I have tried :
declare ...
2
votes
2answers
780 views
Getting filename of an XML file with xquery
I store my entities in the exist xml database and I use a file name (resource id) as an ID of an entity.
Example: String xquery = "for $movie in collection('/db/movie')//movie "
+ "return ...
2
votes
1answer
121 views
Configure eXist - LDAP security manager
I am trying to configure eXist to LDAP to authenticate users and I have checked out the documentation at eXist LDAP Security. Turns out the default configuration only supports three settings:
...
0
votes
1answer
273 views
eXist: is it possible to have XQuery modules stored in XML files?
You can store a module in eXist, such as the following, say under /modules/my.xqm:
module namespace my = "http://www.example.com/";
declare function my:answerToTheUltimateQuestion() as xs:integer { ...
0
votes
1answer
161 views
error in Xquery update ( eXistdb)
when i am trying toupdate data into database i found following error'XQuery update expressions can not be applied to in-memory nodes.'...how to resolve this anyone help me....
6
votes
3answers
2k views
Who is using eXist-db?
I just heard about http://exist-db.org/ on FLOSS weekly. (http://www.twit.tv/floss97) The technology seems interesting. Does anyone else use it in production applications? What are the strengths ...