<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:www.nabble.com,2006:forum-4072</id>
	<title>Nabble - eXist</title>
	<updated>2008-07-05T13:47:42Z</updated>
	<link rel="self" type="application/atom+xml" href="http://www.nabble.com/eXist-f4072.xml" />
	<link rel="alternate" type="text/html" href="http://www.nabble.com/eXist-f4072.html" />
	<subtitle type="html">eXist is a native XML database featuring efficient, index-based XQuery processing, extensions for keyword search, XUpdate support, and tight integration with existing XML development tools. eXist home is &lt;a href=&quot;http://sourceforge.net/projects/exist/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;here&lt;/a&gt;.</subtitle>
	
<entry>
	<id>tag:www.nabble.com,2006:post-18296136</id>
	<title>eXist + Groovy 1.5.6 + xmlrpc clash</title>
	<published>2008-07-05T13:47:42Z</published>
	<updated>2008-07-05T13:47:42Z</updated>
	<author>
		<name>rloesche</name>
	</author>
	<content type="html">Hi, I'm just starting to get familiar with eXist. I have a project ahead where i can make good use of an XML database and so I started investigating. I want to load a 100.000 xml documents into the store for purpose of analysing. when using the ant tasks everything works fine. 
&lt;br&gt;I would like to use Groovy and the AntBuilder to setup my project solution. But here the problems start.
&lt;br&gt;As soon as I start using Groovy and the AntBuilder there is a clash. The error message reads:
&lt;br&gt;==================================
&lt;br&gt;&amp;nbsp; &amp;nbsp; [store] Found 7 files.
&lt;br&gt;&amp;nbsp; &amp;nbsp; [store] Storing applicationContext.xml ...
&lt;br&gt;Caught: : java.lang.LinkageError: Class org/xml/sax/InputSource violates loader constraints
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at exist1.run(exist1.groovy:14)
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; at exist1.main(exist1.groovy)
&lt;br&gt;==================================
&lt;br&gt;eXist has a dependency on xmlrpc-1.2-patched.jar and this is the offending guy - as far as I can say. I tried using different versions of xmlrpc, but that did not work. I also tried killing the InputSource from the jar - did not help either ( it could not find the xmlrpc any longer ). 
&lt;br&gt;&lt;br&gt;The working ant build file is:
&lt;br&gt;-----------------------------------------
&lt;br&gt;&amp;lt;?xml version=&amp;quot;1.0&amp;quot;?&amp;gt;
&lt;br&gt;&amp;lt;project name=&amp;quot;exist&amp;quot; default=&amp;quot;x&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;path id=&amp;quot;classpath.core&amp;quot;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fileset dir=&amp;quot;C:/Dokumente und Einstellungen/admin/.groovy/exist&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;include name=&amp;quot;*.jar&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/fileset&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/path&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;typedef resource=&amp;quot;org/exist/ant/antlib.xml&amp;quot; uri=&amp;quot;&lt;a href=&quot;http://exist-db.org/ant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://exist-db.org/ant&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;classpath refid=&amp;quot;classpath.core&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/typedef&amp;gt; 
&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;target name=&amp;quot;x&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xdb:store xmlns:xdb=&amp;quot;&lt;a href=&quot;http://exist-db.org/ant&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://exist-db.org/ant&lt;/a&gt;&amp;quot; uri=&amp;quot;xmldb:exist://localhost:8080/exist/xmlrpc/db/rl1&amp;quot; createcollection=&amp;quot;true&amp;quot;&amp;gt; &amp;nbsp;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;fileset dir=&amp;quot;C:/data/workspace/rloesche/svn-repository/developmentsupport/Technologie/xmls&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;include name=&amp;quot;*.xml&amp;quot;/&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/fileset&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/xdb:store&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/target&amp;gt;
&lt;br&gt;&amp;lt;/project&amp;gt;
&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;the Groovy file that does not work is: ( gives the error messge above )
&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;// here are the source files to load
&lt;br&gt;fns &amp;nbsp; &amp;nbsp; &amp;nbsp; ='C:/data/workspace/rloesche/svn-repository/developmentsupport/Technologie/xmls'
&lt;br&gt;&lt;br&gt;// here are all the eXist jars
&lt;br&gt;existpath ='C:/Dokumente und Einstellungen/admin/.groovy/exist'
&lt;br&gt;&lt;br&gt;def ant = new AntBuilder()
&lt;br&gt;ant.taskdef( name:&amp;quot;store&amp;quot;, classname:&amp;quot;org.exist.ant.XMLDBStoreTask&amp;quot;){
&lt;br&gt;&amp;nbsp; classpath{
&lt;br&gt;&amp;nbsp; &amp;nbsp; fileset(dir:existpath,includes:&amp;quot;*.jar&amp;quot;)
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;ant.store(uri:&amp;quot;xmldb:exist://localhost:8080/exist/xmlrpc/db/rl1&amp;quot;, createcollection:&amp;quot;true&amp;quot;){
&lt;br&gt;&amp;nbsp; fileset(dir:fns){
&lt;br&gt;&amp;nbsp; &amp;nbsp; include( name:&amp;quot;*.xml&amp;quot;)
&lt;br&gt;&amp;nbsp; }
&lt;br&gt;}
&lt;br&gt;------------------------------------------------------------ 
&lt;br&gt;&lt;br&gt;mY environemtn is:
&lt;br&gt;&lt;br&gt;-Groovy 1.5.6
&lt;br&gt;-Windows XP
&lt;br&gt;-eXist: a current download as of today
&lt;br&gt;-Java 1.5.0
&lt;br&gt;&lt;br&gt;I really would apreciate any help
&lt;br&gt;&lt;br&gt;regards
&lt;br&gt;&lt;br&gt;ralf
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/eXist-%2B-Groovy-1.5.6-%2B-xmlrpc-clash-tp18296136p18296136.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18284725</id>
	<title>Re: simple query not working</title>
	<published>2008-07-04T12:12:26Z</published>
	<updated>2008-07-04T12:12:26Z</updated>
	<author>
		<name>Dannes Wessels-2</name>
	</author>
	<content type="html">Hi
&lt;br&gt;&lt;br&gt;On Fri, Jul 4, 2008 at 7:25 PM, Enric Jaen &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18284725&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;enricjaen@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; I reinstalled eXist and now it works.
&lt;br&gt;&lt;br&gt;hmmm that really does make no sense :-)
&lt;br&gt;&lt;br&gt;regards
&lt;br&gt;&lt;br&gt;Dannes
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18284725&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/simple-query-not-working-tp18281443p18284725.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18283462</id>
	<title>Re: simple query not working</title>
	<published>2008-07-04T10:25:55Z</published>
	<updated>2008-07-04T10:25:55Z</updated>
	<author>
		<name>ejaenv</name>
	</author>
	<content type="html">I reinstalled eXist and now it works. 
&lt;br&gt;Thanks to all who replied.
&lt;br&gt;/Enric
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Mensaje original ----
&lt;br&gt;De: Enric Jaen &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18283462&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;enricjaen@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Para: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18283462&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;exist-open@...&lt;/a&gt;
&lt;br&gt;Enviado: viernes, 4 de julio, 2008 18:49:55
&lt;br&gt;Asunto: Re: simple query not working
&lt;br&gt;&lt;br&gt;I must have an installation problem because if I try the eXist's sandbox with
&lt;br&gt;doc(&amp;quot;&lt;a href=&quot;http://www.functx.com/input/catalog.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.functx.com/input/catalog.xml&lt;/a&gt;&amp;quot;)//product &amp;nbsp;it works,
&lt;br&gt;&lt;br&gt;but if I do the same query in my installed sandbox then it doesn't return nothing.
&lt;br&gt;&lt;br&gt;When I start up server it shows:
&lt;br&gt;&lt;br&gt;xerces-J 2.9.1
&lt;br&gt;Saxon 9.1.0.1
&lt;br&gt;&lt;br&gt;So what is wrong with my installation?
&lt;br&gt;&lt;br&gt;/Enric
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Mensaje original ----
&lt;br&gt;De: Enric Jaen &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18283462&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;enricjaen@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Para: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18283462&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;exist-open@...&lt;/a&gt;
&lt;br&gt;Enviado: viernes, 4 de julio, 2008 17:39:29
&lt;br&gt;Asunto: Re: simple query not working
&lt;br&gt;&lt;br&gt;Sorry in my previous mail I missed a quote.
&lt;br&gt;&lt;br&gt;it's doc(&amp;quot;hamlet.xml&amp;quot;)//TITLE &amp;nbsp;
&lt;br&gt;&lt;br&gt;but it doesn't work. So, what I am doing wrong?
&lt;br&gt;I am quite confused.
&lt;br&gt;/Enric
&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Mensaje original ----
&lt;br&gt;De: Enric Jaen &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18283462&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;enricjaen@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Para: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18283462&amp;i=5&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;exist-open@...&lt;/a&gt;
&lt;br&gt;Enviado: viernes, 4 de julio, 2008 17:22:38
&lt;br&gt;Asunto: simple query not working
&lt;br&gt;&lt;br&gt;Hi, I am testing the query panel of the client GUI. If I do &amp;nbsp;
&lt;br&gt;doc(&amp;quot;hamlet.xml&amp;quot;)//* &amp;nbsp; &amp;nbsp;it works OK, but 
&lt;br&gt;&lt;br&gt;doc(&amp;quot;hamlet.xml)//TITLE &amp;nbsp; doesn't work. What I am doing wrong?
&lt;br&gt;Thanks,
&lt;br&gt;/E.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ______________________________________________ 
&lt;br&gt;Enviado desde Correo Yahoo! La bandeja de entrada más inteligente.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ______________________________________________ 
&lt;br&gt;Enviado desde Correo Yahoo! La bandeja de entrada más inteligente.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ______________________________________________ 
&lt;br&gt;Enviado desde Correo Yahoo! La bandeja de entrada más inteligente.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ______________________________________________ 
&lt;br&gt;Enviado desde Correo Yahoo! La bandeja de entrada más inteligente.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18283462&amp;i=6&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/simple-query-not-working-tp18281443p18283462.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18283141</id>
	<title>Re: simple query not working</title>
	<published>2008-07-04T10:00:32Z</published>
	<updated>2008-07-04T10:00:32Z</updated>
	<author>
		<name>Wolfgang Meier-2</name>
	</author>
	<content type="html">&amp;gt; doc(&amp;quot;hamlet.xml)//TITLE &amp;nbsp; doesn't work. What I am doing wrong?
&lt;br&gt;&lt;br&gt;Not sure what's wrong, but I would generally recommend to specify the 
&lt;br&gt;full path to the document with fn:doc(), e.g. 
&lt;br&gt;doc(&amp;quot;/db/my/collection/hamlet.xml&amp;quot;)//TITLE. Otherwise the path will be 
&lt;br&gt;interpreted relative to the current context collection and this may 
&lt;br&gt;change depending on how you call the query.
&lt;br&gt;&lt;br&gt;Wolfgang
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18283141&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/simple-query-not-working-tp18281443p18283141.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18282949</id>
	<title>Re: simple query not working</title>
	<published>2008-07-04T09:49:55Z</published>
	<updated>2008-07-04T09:49:55Z</updated>
	<author>
		<name>ejaenv</name>
	</author>
	<content type="html">I must have an installation problem because if I try the eXist's sandbox with
&lt;br&gt;doc(&amp;quot;&lt;a href=&quot;http://www.functx.com/input/catalog.xml&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.functx.com/input/catalog.xml&lt;/a&gt;&amp;quot;)//product &amp;nbsp;it works,
&lt;br&gt;&lt;br&gt;but if I do the same query in my installed sandbox then it doesn't return nothing.
&lt;br&gt;&lt;br&gt;When I start up server it shows:
&lt;br&gt;&lt;br&gt;xerces-J 2.9.1
&lt;br&gt;Saxon 9.1.0.1
&lt;br&gt;&lt;br&gt;So what is wrong with my installation?
&lt;br&gt;&lt;br&gt;/Enric
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Mensaje original ----
&lt;br&gt;De: Enric Jaen &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18282949&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;enricjaen@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Para: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18282949&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;exist-open@...&lt;/a&gt;
&lt;br&gt;Enviado: viernes, 4 de julio, 2008 17:39:29
&lt;br&gt;Asunto: Re: simple query not working
&lt;br&gt;&lt;br&gt;Sorry in my previous mail I missed a quote.
&lt;br&gt;&lt;br&gt;it's doc(&amp;quot;hamlet.xml&amp;quot;)//TITLE &amp;nbsp;
&lt;br&gt;&lt;br&gt;but it doesn't work. So, what I am doing wrong?
&lt;br&gt;I am quite confused.
&lt;br&gt;/Enric
&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Mensaje original ----
&lt;br&gt;De: Enric Jaen &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18282949&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;enricjaen@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Para: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18282949&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;exist-open@...&lt;/a&gt;
&lt;br&gt;Enviado: viernes, 4 de julio, 2008 17:22:38
&lt;br&gt;Asunto: simple query not working
&lt;br&gt;&lt;br&gt;Hi, I am testing the query panel of the client GUI. If I do &amp;nbsp;
&lt;br&gt;doc(&amp;quot;hamlet.xml&amp;quot;)//* &amp;nbsp; &amp;nbsp;it works OK, but 
&lt;br&gt;&lt;br&gt;doc(&amp;quot;hamlet.xml)//TITLE &amp;nbsp; doesn't work. What I am doing wrong?
&lt;br&gt;Thanks,
&lt;br&gt;/E.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ______________________________________________ 
&lt;br&gt;Enviado desde Correo Yahoo! La bandeja de entrada más inteligente.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ______________________________________________ 
&lt;br&gt;Enviado desde Correo Yahoo! La bandeja de entrada más inteligente.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ______________________________________________ 
&lt;br&gt;Enviado desde Correo Yahoo! La bandeja de entrada más inteligente.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18282949&amp;i=4&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/simple-query-not-working-tp18281443p18282949.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18281746</id>
	<title>Re: simple query not working</title>
	<published>2008-07-04T08:39:29Z</published>
	<updated>2008-07-04T08:39:29Z</updated>
	<author>
		<name>ejaenv</name>
	</author>
	<content type="html">Sorry in my previous mail I missed a quote.
&lt;br&gt;&lt;br&gt;it's doc(&amp;quot;hamlet.xml&amp;quot;)//TITLE &amp;nbsp;
&lt;br&gt;&lt;br&gt;but it doesn't work. So, what I am doing wrong?
&lt;br&gt;I am quite confused.
&lt;br&gt;/Enric
&lt;br&gt;&lt;br&gt;&lt;br&gt;----- Mensaje original ----
&lt;br&gt;De: Enric Jaen &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18281746&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;enricjaen@...&lt;/a&gt;&amp;gt;
&lt;br&gt;Para: &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18281746&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;exist-open@...&lt;/a&gt;
&lt;br&gt;Enviado: viernes, 4 de julio, 2008 17:22:38
&lt;br&gt;Asunto: simple query not working
&lt;br&gt;&lt;br&gt;Hi, I am testing the query panel of the client GUI. If I do &amp;nbsp;
&lt;br&gt;doc(&amp;quot;hamlet.xml&amp;quot;)//* &amp;nbsp; &amp;nbsp;it works OK, but 
&lt;br&gt;&lt;br&gt;doc(&amp;quot;hamlet.xml)//TITLE &amp;nbsp; doesn't work. What I am doing wrong?
&lt;br&gt;Thanks,
&lt;br&gt;/E.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ______________________________________________ 
&lt;br&gt;Enviado desde Correo Yahoo! La bandeja de entrada más inteligente.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ______________________________________________ 
&lt;br&gt;Enviado desde Correo Yahoo! La bandeja de entrada más inteligente.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18281746&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/simple-query-not-working-tp18281443p18281746.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18281443</id>
	<title>simple query not working</title>
	<published>2008-07-04T08:22:38Z</published>
	<updated>2008-07-04T08:22:38Z</updated>
	<author>
		<name>ejaenv</name>
	</author>
	<content type="html">Hi, I am testing the query panel of the client GUI. If I do &amp;nbsp;
&lt;br&gt;doc(&amp;quot;hamlet.xml&amp;quot;)//* &amp;nbsp; &amp;nbsp;it works OK, but 
&lt;br&gt;&lt;br&gt;doc(&amp;quot;hamlet.xml)//TITLE &amp;nbsp; doesn't work. What I am doing wrong?
&lt;br&gt;Thanks,
&lt;br&gt;/E.
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ______________________________________________ 
&lt;br&gt;Enviado desde Correo Yahoo! La bandeja de entrada más inteligente.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18281443&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/simple-query-not-working-tp18281443p18281443.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18277748</id>
	<title>Re: SOAP interface and Flex</title>
	<published>2008-07-04T04:33:29Z</published>
	<updated>2008-07-04T04:33:29Z</updated>
	<author>
		<name>Dominik Piekarczyk</name>
	</author>
	<content type="html">Thanks Roger for your response, I will answer to eXist list as well, maybe someone else would participate in the discussion or find the its content useful for himself.&lt;br&gt;&lt;br&gt;I&amp;#39;ve tried REST API, Roger&amp;#39;s suggestion with using CDATA is fine, but I&amp;#39;ve faced another problem: in Flex I can&amp;#39;t send POST data in scalar format, and I need &amp;quot;key - value&amp;quot; format. Perl example in REST API documentation shows pushing xquery without a key.&amp;nbsp; &lt;br&gt;
&lt;br&gt;Have You any idea how to solve the problem? Is there any parameter I could use as a key to make a pair?&lt;br&gt;&lt;br&gt;I&amp;#39;m starting to believe that any solution of combining Flex with Exist does not exist.&lt;br&gt;&lt;br&gt;Below I have an example of http service difinition in Flex:&lt;br&gt;
&lt;br&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:HTTPService&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; id=&amp;quot;exampleService&amp;quot;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;
&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; url=&amp;quot;&lt;a href=&quot;http://localhost:8080/exist/rest/db/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/exist/rest/db/&lt;/a&gt;&amp;quot;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; resultFormat=&amp;quot;e4x&amp;quot;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;
&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; method=&amp;quot;POST&amp;quot;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; contentType=&amp;quot;application/xml&amp;quot;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;i&gt;(only this and application/x-www-form-urlencoded are allowed values)&lt;/i&gt;&lt;br&gt;
&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; result=&amp;quot;onExampleServiceResult(event)&amp;quot;&amp;gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:request xmlns=&amp;quot;&amp;quot;&amp;gt;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;
&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;exampleKey1&amp;gt; &lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;div style=&quot;margin-left: 80px; font-family: courier new,monospace;&quot;&gt;example value, like xqery code&lt;br&gt;
&lt;/div&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/exampleKey1&amp;gt;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:request&amp;gt;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;
&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/mx:HTTPService&amp;gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;When I try to remove &amp;lt;exampleKey1&amp;gt; I get an error: &lt;i&gt;Model &amp;#39;request&amp;#39; contains only scalar content - this is currently unsupported.&lt;br&gt;
&lt;/i&gt;&lt;br&gt;This definition works fine (it&amp;#39;s GET and doesn&amp;#39;t need any parameters):&lt;br&gt;&lt;br&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mx:HTTPService&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;
&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; id=&amp;quot;exampleService&amp;quot;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; url=&amp;quot;&lt;a href=&quot;http://localhost:8080/exist/rest/db/clients?_query={query}&amp;amp;amp;_start=1&amp;amp;amp;_howmany={howmany}&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/exist/rest/db/clients?_query={query}&amp;amp;amp;_start=1&amp;amp;amp;_howmany={howmany}&lt;/a&gt;&amp;quot;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;
&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; resultFormat=&amp;quot;e4x&amp;quot;&lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; method=&amp;quot;GET&amp;quot; &lt;/span&gt;&lt;br style=&quot;font-family: courier new,monospace;&quot;&gt;
&lt;span style=&quot;font-family: courier new,monospace;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; result=&amp;quot;onExampleServiceResult(event)&amp;quot;/&amp;gt;&lt;/span&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Thanks in advance for any help,&lt;br&gt;Dominik Piekarczyk&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Wed, Jul 2, 2008 at 7:42 PM, Roger Espinosa &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18277748&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;roger.espinosa@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;How much control do you have in Flex for passing arguments? When constructing REST queries I tend to wrap the XQuery statements in a CDATA block so I don&amp;#39;t have to do any encoding.&lt;br&gt;
&lt;br&gt;In your case, &lt;br&gt;&lt;br&gt;&amp;lt;dateTime&amp;gt;{current-dateTime()}&amp;lt;/dateTime&amp;gt;&lt;br&gt;
&lt;br&gt;would simply be&lt;br&gt;&lt;br&gt;&amp;amp;lt;dateTime&amp;gt;{curretn-dateTime()}&amp;amp;lt;/dateTime&amp;gt;&lt;br&gt;&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;-R&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;--&lt;br&gt;Dominik Piekarczyk&lt;br&gt;&lt;a href=&quot;http://www.araneo.pl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www.araneo.pl&lt;/a&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18277748&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/SOAP-interface-and-Flex-tp18217200p18277748.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18275428</id>
	<title>Re: Web scraping with eXist: http vs. httpclient module?</title>
	<published>2008-07-04T01:43:11Z</published>
	<updated>2008-07-04T01:43:11Z</updated>
	<author>
		<name>Wolfgang Meier-2</name>
	</author>
	<content type="html">&amp;gt; Sure, I'm up for helping out with documentation. &amp;nbsp;Wolfgang - do you
&lt;br&gt;&amp;gt; have any needs?
&lt;br&gt;&lt;br&gt;Indeed, what eXist lacks most right now are some introductory articles, 
&lt;br&gt;which demonstrate from start to end how you develop an eXist-based 
&lt;br&gt;website. The existing documentation just describes all the various 
&lt;br&gt;interfaces, function modules, indexes and so on, but it does not really 
&lt;br&gt;explain how to put everything together.
&lt;br&gt;&lt;br&gt;The XQuery book already fills this gap by providing many well-explained 
&lt;br&gt;examples. It should be prominently linked from the eXist main site. 
&lt;br&gt;However, there should at least be one start-to-end tutorial which can be 
&lt;br&gt;shipped with eXist and which uses one example to explain the very basics 
&lt;br&gt;like: how to deploy an XQuery, how to import and use modules, how to 
&lt;br&gt;create the necessary indexes and load data, how to generate your HTML 
&lt;br&gt;from XQuery, and so on. But most important, it should help people to 
&lt;br&gt;understand the big picture, i.e. the &amp;quot;pure eXist/XQuery/XSLT approach&amp;quot;. 
&lt;br&gt;Certainly, the article could be mirrored on the wiki book or vice versa.
&lt;br&gt;&lt;br&gt;&amp;gt; Also, I've thought of at some point documenting my TEI-based website,
&lt;br&gt;&amp;gt; something like: building a TEI-based site with eXist. &amp;nbsp;James Cummings
&lt;br&gt;&amp;gt; wrote a nice paper for a conference in Kyoto, but I think the
&lt;br&gt;&amp;gt; discussion of apache got in the way a bit of the elegance of a pure
&lt;br&gt;&amp;gt; eXist/XQuery/XSLT approach.
&lt;br&gt;&lt;br&gt;Yes, TEI-based data could be a good starting point. We would also need 
&lt;br&gt;some data-centric queries to explain index configurations, but I think 
&lt;br&gt;this could be done with TEI as well.
&lt;br&gt;&lt;br&gt;Wolfgang
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18275428&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Web-scraping-with-eXist%3A-http-vs.-httpclient-module--tp18125660p18275428.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18274052</id>
	<title>Re: Web scraping with eXist: http vs. httpclient module?</title>
	<published>2008-07-04T00:03:43Z</published>
	<updated>2008-07-04T00:03:43Z</updated>
	<author>
		<name>Chris Wallace</name>
	</author>
	<content type="html">There is an example of using httpclient for page scraping in the 
&lt;br&gt;&lt;a href=&quot;http://en.wikibooks.org/wiki/XQuery/Page_scraping_and_Yahoo_Weather&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;XQuery Wikibook&lt;/a&gt;&lt;br&gt;&lt;br&gt;amongst other examples which use doc() on well-formed XML pages like those from Wikipedia.
&lt;br&gt;&lt;br&gt;I've been working on this book for a year or so now, and would welcome critique, suggestions for examples and contributions of examples. &amp;nbsp;Scripts in the book are (mainly) executable on a server at my University. The book lacks document-centric examples, such as TEI &amp;nbsp;and also needs some attention which I hope to give it this summer. It would be great to have extended articles on design and development such as the one you suggest. 
&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Joe Wicentowski wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Also, I've thought of at some point documenting my TEI-based website,
&lt;br&gt;something like: building a TEI-based site with eXist. 
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Web-scraping-with-eXist%3A-http-vs.-httpclient-module--tp18125660p18274052.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18273655</id>
	<title>Re: Having problem indexing/uploading large xml document (450MB)</title>
	<published>2008-07-03T23:30:58Z</published>
	<updated>2008-07-03T23:30:58Z</updated>
	<author>
		<name>Dannes Wessels-2</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;On Fri, Jul 4, 2008 at 8:30 AM, Dannes Wessels &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18273655&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dizzzz@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; You could register the DTD in the 'catalog.xml' ; other files should
&lt;br&gt;&amp;gt; be resolved relative to this catalog.
&lt;br&gt;&lt;br&gt;or switch off validation in conf.xml ;
&lt;br&gt;&lt;br&gt;regards
&lt;br&gt;&lt;br&gt;Dannes
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18273655&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Having-problem-indexing-uploading-large-xml-document-%28450MB%29-tp18250181p18273655.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18273640</id>
	<title>Re: Having problem indexing/uploading large xml document (450MB)</title>
	<published>2008-07-03T23:30:03Z</published>
	<updated>2008-07-03T23:30:03Z</updated>
	<author>
		<name>Dannes Wessels</name>
	</author>
	<content type="html">HI,
&lt;br&gt;&lt;br&gt;On Fri, Jul 4, 2008 at 4:09 AM, Felipe Hummel &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18273640&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;felipehummel@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; It found something wrong in the dblp.dtd, but if I remove the DTD line from
&lt;br&gt;&amp;gt; the dblp.xml, then I get this error:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; Impossible to store a resource /home/felipehummel/workspace/dblp.xml:
&lt;br&gt;&amp;gt;&amp;gt; fatal error at (18,20) : The entity &amp;quot;eacute&amp;quot; was referenced, but not
&lt;br&gt;&amp;gt;&amp;gt; declared.
&lt;br&gt;&lt;br&gt;You could register the DTD in the 'catalog.xml' ; other files should
&lt;br&gt;be resolved relative to this catalog.
&lt;br&gt;&lt;br&gt;regards
&lt;br&gt;&lt;br&gt;Dannes
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18273640&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Having-problem-indexing-uploading-large-xml-document-%28450MB%29-tp18250181p18273640.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18273454</id>
	<title>Re: util:import-module?</title>
	<published>2008-07-03T23:13:03Z</published>
	<updated>2008-07-03T23:13:03Z</updated>
	<author>
		<name>geiser ch.</name>
	</author>
	<content type="html">Thank you Adam
&lt;br&gt;Promise, I'll try to be better as fast as I can...
&lt;br&gt;I am however still kind of stuck with this: I can't dynamically associate the prefix with the namespace.
&lt;br&gt;&lt;br&gt;In more detail:
&lt;br&gt;&lt;br&gt;I have one function that load the module in the prologue. It looks like:
&lt;br&gt;&amp;nbsp; declare function index:load-module() 
&lt;br&gt;&amp;nbsp; {
&lt;br&gt;&amp;nbsp; util:import-module (xs:anyURI(&amp;quot;&lt;a href=&quot;http://www.e-Smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-Smile.org/header&lt;/a&gt;&amp;quot;) ,&amp;quot;header&amp;quot;, &amp;nbsp;xs:anyURI(&amp;quot;modules/header.xqm&amp;quot;))
&lt;br&gt;&amp;nbsp; };
&lt;br&gt;&lt;br&gt;In the body, there is a call to this function followed by a call to another function in the header.xqm module:
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{index:load-module()}
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{header:info-header()}
&lt;br&gt;&lt;br&gt;that return the error: &amp;quot;XPST0081: No namespace defined for prefix header&amp;quot;
&lt;br&gt;&lt;br&gt;Now, the function util:import-module seem to work. Or at least, it cries when I refer to a module that does not exist or have different namespace in the .xqm file and the first parameter. 
&lt;br&gt;I tried a lot of variants of this, again without success (have the header:info-header() in the index:load-module() function, load the module in the prologue without a function, insert the &amp;quot;util:import-module ...&amp;quot; statement in the body,...)
&lt;br&gt;&lt;br&gt;One strange thing though is that if I have an error in my index:load-module() function (e.g. refer to a .xqm file that does not exist), the error returned by the xquery is the same XPST0081: No namspace.... 
&lt;br&gt;To make the problem with the index:load-module() appear (e.g. source for module modules/headerww.xqm not found in database), I first need to remove the line &amp;nbsp;{header:info-header()} from the body
&lt;br&gt;&lt;br&gt;Sorry again if this is something stupid simple ...
&lt;br&gt;Best regard
&lt;br&gt;Christophe
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Adam Retter-3 wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Afraid so,
&lt;br&gt;&lt;br&gt;The hint is in the error message - xs:string is not a sub-type of
&lt;br&gt;xs:anyURI - the function expects URI's for parameters 1 and 3 as
&lt;br&gt;stated in the function documentation.
&lt;br&gt;&lt;br&gt;Try this instead -
&lt;br&gt;&lt;br&gt;et $a:=util:import-module (xs:anyURI(&amp;quot;&lt;a href=&quot;http://www.e-smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-smile.org/header&lt;/a&gt;&amp;quot;) ,&amp;quot;header&amp;quot;,
&lt;br&gt;xs:anyURI(&amp;quot;modules/header.xqm&amp;quot;))
&lt;br&gt;&lt;br&gt;2008/7/3 geiser ch. &amp;lt;christophe.geiser@wfp.org&amp;gt;:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi all
&lt;br&gt;&amp;gt; I was looking for possibilities to be more dynamic in the way modules are
&lt;br&gt;&amp;gt; loaded, and was happy to see that there was the util:import-module function
&lt;br&gt;&amp;gt; for this.
&lt;br&gt;&amp;gt; I am however unsuccessful in my attempts to run something basic (under
&lt;br&gt;&amp;gt; version 1.2.0):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; (:Try to dynamicaly load modules:)
&lt;br&gt;&amp;gt; let $a:=util:import-module ( &amp;quot;&lt;a href=&quot;http://www.e-smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-smile.org/header&lt;/a&gt;&amp;quot; ,&amp;quot;header&amp;quot;,
&lt;br&gt;&amp;gt; &amp;quot;modules/header.xqm&amp;quot;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; returns the error:
&lt;br&gt;&amp;gt; Error checking function parameter 1 in call
&lt;br&gt;&amp;gt; util:import-module(untyped-value-check[xs:anyURI,
&lt;br&gt;&amp;gt; &amp;quot;&lt;a href=&quot;http://www.e-smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-smile.org/header&lt;/a&gt;&amp;quot;], &amp;quot;header&amp;quot;, untyped-value-check[xs:anyURI,
&lt;br&gt;&amp;gt; &amp;quot;modules/header.xqm&amp;quot;]): FORG0001: xs:string(&lt;a href=&quot;http://www.e-smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-smile.org/header&lt;/a&gt;)
&lt;br&gt;&amp;gt; is not a sub-type of xs:anyURI [at line 89, column 9]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; As I new to eXist, there might be something stupid I am missing...
&lt;br&gt;&amp;gt; Is there somebody who uses this function with success?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Best regards
&lt;br&gt;&amp;gt; Christophe
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/util%3Aimport-module--tp18256003p18273454.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18271468</id>
	<title>Re: Having problem indexing/uploading large xml document (450MB)</title>
	<published>2008-07-03T19:09:12Z</published>
	<updated>2008-07-03T19:09:12Z</updated>
	<author>
		<name>Felipe Hummel</name>
	</author>
	<content type="html">Hi, thanks for the anwsers. &lt;br&gt;&lt;br&gt;I tried to upload dblp.xml through the java admin client (embedded mode), but I got this error:&lt;br&gt;&lt;br&gt;&lt;blockquote style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot; class=&quot;gmail_quote&quot;&gt;
Impossible to store a resource /home/felipehummel/workspace/dblp.xml: error at (4,74) : Attribute &amp;quot;mdate&amp;quot; must be declared for element type &amp;quot;incollection&amp;quot;.&lt;br&gt;&lt;/blockquote&gt;&lt;br&gt;It found something wrong in the dblp.dtd, but if I remove the DTD line from the dblp.xml, then I get this error:&lt;br&gt;
&lt;br&gt;&lt;blockquote style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot; class=&quot;gmail_quote&quot;&gt;Impossible to store a resource /home/felipehummel/workspace/dblp.xml: fatal error at (18,20) : The entity &amp;quot;eacute&amp;quot; was referenced, but not declared.&lt;br&gt;
&lt;/blockquote&gt;&lt;br&gt;Any suggestion?&lt;br&gt;&lt;br&gt;Thank you&lt;br&gt;&lt;br&gt;Felipe Hummel&lt;br&gt;&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;On Thu, Jul 3, 2008 at 4:56 AM, Wolfgang Meier &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18271468&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;wolfgang@...&lt;/a&gt;&amp;gt; wrote:&lt;br&gt;
&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div class=&quot;Ih2E3d&quot;&gt;&amp;gt; Hi, I&amp;#39;m working with de DBLP xml dataset, which is about 450MB, I went to&lt;br&gt;

&amp;gt; the admin section of eXist, then to the Browse Selection and tried to upload&lt;br&gt;
&amp;gt; the document. It takes a few seconds, and then a blank page shows up with&lt;br&gt;
&amp;gt; just the menu on the left side. The document was not uploaded and of course&lt;br&gt;
&amp;gt; I can&amp;#39;t query it.&lt;br&gt;
&amp;gt; What&amp;#39;s wrong?&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;450MB are a bit too much for uploading via web forms. I guess the web&lt;br&gt;
server times out the request or runs out of memory.&lt;br&gt;
&lt;br&gt;
Please use the Java admin client for jobs like this. For maximum&lt;br&gt;
performance, you can launch the client in embedded mode, which saves&lt;br&gt;
you the time for uploading the data.&lt;br&gt;
&lt;br&gt;
To parse the DBLP fast enough, you should also increase cacheSize in&lt;br&gt;
conf.xml, as well as provide a little more memory to Java. Please read&lt;br&gt;
the following notes though:&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://atomic.exist-db.org/blogs/eXist/WarningBadMemory&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://atomic.exist-db.org/blogs/eXist/WarningBadMemory&lt;/a&gt;&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
Wolfgang&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18271468&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Having-problem-indexing-uploading-large-xml-document-%28450MB%29-tp18250181p18271468.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18270740</id>
	<title>REST API: errors returned with incorrect content type</title>
	<published>2008-07-03T17:45:14Z</published>
	<updated>2008-07-03T17:45:14Z</updated>
	<author>
		<name>Alessandro Vernet</name>
	</author>
	<content type="html">When using the REST API, if the XQuery sent to eXist has a syntax error, eXist used to respond with some HTML that contains the error. I am happy to see that this was changed, and that now eXist just sends the error back as text. But, there is a problem: the content type is set to text/xml, while it should be set to something like text/plain.
&lt;br&gt;&lt;br&gt;The issue with this is that if the content type is text/xml, our code (in Orbeon Forms) tries to parse this as XML, chokes, and the error message is lost.
&lt;br&gt;&lt;br&gt;I am using the latest code in the 1.2.2 stable branch.
&lt;br&gt;&lt;br&gt;Alex&lt;div class=&quot;signature&quot;&gt;Orbeon Forms - Web 2.0 Forms, open-source, for the Enterprise
&lt;br&gt;&lt;a href=&quot;http://www.orbeon.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.orbeon.com/&lt;/a&gt;&lt;br&gt;&lt;/div&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/REST-API%3A-errors-returned-with-incorrect-content-type-tp18270740p18270740.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18270226</id>
	<title>Re: Web scraping with eXist: http vs. httpclient module?</title>
	<published>2008-07-03T16:47:28Z</published>
	<updated>2008-07-03T16:47:28Z</updated>
	<author>
		<name>Joe Wicentowski</name>
	</author>
	<content type="html">Sure, I'm up for helping out with documentation. &amp;nbsp;Wolfgang - do you
&lt;br&gt;have any needs?
&lt;br&gt;&lt;br&gt;Also, I've thought of at some point documenting my TEI-based website,
&lt;br&gt;something like: building a TEI-based site with eXist. &amp;nbsp;James Cummings
&lt;br&gt;wrote a nice paper for a conference in Kyoto, but I think the
&lt;br&gt;discussion of apache got in the way a bit of the elegance of a pure
&lt;br&gt;eXist/XQuery/XSLT approach.
&lt;br&gt;&lt;br&gt;- Joe
&lt;br&gt;&lt;br&gt;On Mon, Jun 30, 2008 at 6:51 AM, Adam Retter &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18270226&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;adam@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Its actually the page on the eXist website that is out of date, im not
&lt;br&gt;&amp;gt; sure why it wasnt updated when the last release went out...
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Help with documentation is always welcome, personally I would love to
&lt;br&gt;&amp;gt; see a cookbook, a kind of set of pages about achieving different tasks
&lt;br&gt;&amp;gt; with eXist - for example screen-scrapping some html ;-) However there
&lt;br&gt;&amp;gt; may be more pressing documentation needs that perhaps Wolfgang or one
&lt;br&gt;&amp;gt; of the other devs could suggest, if your up for it?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Cheers Adam.
&lt;/div&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18270226&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Web-scraping-with-eXist%3A-http-vs.-httpclient-module--tp18125660p18270226.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18267082</id>
	<title>Re: Preview: eXist-db 1.3.0dev</title>
	<published>2008-07-03T12:52:14Z</published>
	<updated>2008-07-03T12:52:14Z</updated>
	<author>
		<name>Chris Wallace</name>
	</author>
	<content type="html">We have switched both the test version of our application and the version supporting the XQuery Wikibook
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://en.wikibooks.org/wiki/XQuery&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://en.wikibooks.org/wiki/XQuery&lt;/a&gt;&lt;br&gt;&lt;br&gt;to 1.3dev. &amp;nbsp;Performance is good and apart from a couple of bugs logged, it is working very well. The fix for temporary document fragments is particularly beneficial for scripts which are transforming and mashing data from other web pages or services, or perform two-pass analysis of data. 
&lt;br&gt;&lt;br&gt;We have skipped 1.2 so this version is also fixing problems with function calls in modules. For me, the main work in the changeover has been caused by closer adherence to the XQuery standard, so that some previously implicit type conversions must now be explicit and type checking in function calls is more stringent.
&lt;br&gt;&lt;br&gt;One odd bug logged yesterday is that sessions appear not to be working - everything else can be worked around but that's a bit of a show-stopper. 
&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Preview%3A-eXist-db-1.3.0dev-tp18243703p18267082.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18257842</id>
	<title>Re: util:import-module?</title>
	<published>2008-07-03T05:09:43Z</published>
	<updated>2008-07-03T05:09:43Z</updated>
	<author>
		<name>Adam Retter-3</name>
	</author>
	<content type="html">Afraid so,
&lt;br&gt;&lt;br&gt;The hint is in the error message - xs:string is not a sub-type of
&lt;br&gt;xs:anyURI - the function expects URI's for parameters 1 and 3 as
&lt;br&gt;stated in the function documentation.
&lt;br&gt;&lt;br&gt;Try this instead -
&lt;br&gt;&lt;br&gt;et $a:=util:import-module (xs:anyURI(&amp;quot;&lt;a href=&quot;http://www.e-smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-smile.org/header&lt;/a&gt;&amp;quot;) ,&amp;quot;header&amp;quot;,
&lt;br&gt;xs:anyURI(&amp;quot;modules/header.xqm&amp;quot;))
&lt;br&gt;&lt;br&gt;2008/7/3 geiser ch. &amp;lt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18257842&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;christophe.geiser@...&lt;/a&gt;&amp;gt;:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Hi all
&lt;br&gt;&amp;gt; I was looking for possibilities to be more dynamic in the way modules are
&lt;br&gt;&amp;gt; loaded, and was happy to see that there was the util:import-module function
&lt;br&gt;&amp;gt; for this.
&lt;br&gt;&amp;gt; I am however unsuccessful in my attempts to run something basic (under
&lt;br&gt;&amp;gt; version 1.2.0):
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; (:Try to dynamicaly load modules:)
&lt;br&gt;&amp;gt; let $a:=util:import-module ( &amp;quot;&lt;a href=&quot;http://www.e-smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-smile.org/header&lt;/a&gt;&amp;quot; ,&amp;quot;header&amp;quot;,
&lt;br&gt;&amp;gt; &amp;quot;modules/header.xqm&amp;quot;)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; returns the error:
&lt;br&gt;&amp;gt; Error checking function parameter 1 in call
&lt;br&gt;&amp;gt; util:import-module(untyped-value-check[xs:anyURI,
&lt;br&gt;&amp;gt; &amp;quot;&lt;a href=&quot;http://www.e-smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-smile.org/header&lt;/a&gt;&amp;quot;], &amp;quot;header&amp;quot;, untyped-value-check[xs:anyURI,
&lt;br&gt;&amp;gt; &amp;quot;modules/header.xqm&amp;quot;]): FORG0001: xs:string(&lt;a href=&quot;http://www.e-smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-smile.org/header&lt;/a&gt;)
&lt;br&gt;&amp;gt; is not a sub-type of xs:anyURI [at line 89, column 9]
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; As I new to eXist, there might be something stupid I am missing...
&lt;br&gt;&amp;gt; Is there somebody who uses this function with success?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Best regards
&lt;br&gt;&amp;gt; Christophe
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; View this message in context: &lt;a href=&quot;http://www.nabble.com/util%3Aimport-module--tp18256003p18256003.html&quot; target=&quot;_top&quot;&gt;http://www.nabble.com/util%3Aimport-module--tp18256003p18256003.html&lt;/a&gt;&lt;br&gt;&amp;gt; Sent from the exist-open mailing list archive at Nabble.com.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -------------------------------------------------------------------------
&lt;br&gt;&amp;gt; Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;&amp;gt; Studies have shown that voting for your favorite open source project,
&lt;br&gt;&amp;gt; along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;&amp;gt; and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;&amp;gt; _______________________________________________
&lt;br&gt;&amp;gt; Exist-open mailing list
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18257842&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Adam Retter
&lt;br&gt;&lt;br&gt;eXist Developer
&lt;br&gt;{ England }
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18257842&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;adam@...&lt;/a&gt;
&lt;br&gt;irc://irc.freenode.net/existdb
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18257842&amp;i=3&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/util%3Aimport-module--tp18256003p18257842.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18256003</id>
	<title>util:import-module?</title>
	<published>2008-07-03T03:21:20Z</published>
	<updated>2008-07-03T03:21:20Z</updated>
	<author>
		<name>geiser ch.</name>
	</author>
	<content type="html">Hi all
&lt;br&gt;I was looking for possibilities to be more dynamic in the way modules are loaded, and was happy to see that there was the util:import-module function for this. 
&lt;br&gt;I am however unsuccessful in my attempts to run something basic (under version 1.2.0):
&lt;br&gt;&lt;br&gt;(:Try to dynamicaly load modules:)
&lt;br&gt;let $a:=util:import-module ( &amp;quot;&lt;a href=&quot;http://www.e-smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-smile.org/header&lt;/a&gt;&amp;quot; ,&amp;quot;header&amp;quot;, &amp;quot;modules/header.xqm&amp;quot;)
&lt;br&gt;&lt;br&gt;returns the error:
&lt;br&gt;Error checking function parameter 1 in call util:import-module(untyped-value-check[xs:anyURI, &amp;quot;&lt;a href=&quot;http://www.e-smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-smile.org/header&lt;/a&gt;&amp;quot;], &amp;quot;header&amp;quot;, untyped-value-check[xs:anyURI, &amp;quot;modules/header.xqm&amp;quot;]): FORG0001: xs:string(&lt;a href=&quot;http://www.e-smile.org/header&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.e-smile.org/header&lt;/a&gt;) is not a sub-type of xs:anyURI [at line 89, column 9]
&lt;br&gt;&lt;br&gt;As I new to eXist, there might be something stupid I am missing...
&lt;br&gt;Is there somebody who uses this function with success? 
&lt;br&gt;&lt;br&gt;Best regards
&lt;br&gt;Christophe
&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/util%3Aimport-module--tp18256003p18256003.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18254847</id>
	<title>Re: Having problem indexing/uploading large xml document (450MB)</title>
	<published>2008-07-03T01:56:28Z</published>
	<updated>2008-07-03T01:56:28Z</updated>
	<author>
		<name>Wolfgang Meier-2</name>
	</author>
	<content type="html">&amp;gt; Hi, I'm working with de DBLP xml dataset, which is about 450MB, I went to
&lt;br&gt;&amp;gt; the admin section of eXist, then to the Browse Selection and tried to upload
&lt;br&gt;&amp;gt; the document. It takes a few seconds, and then a blank page shows up with
&lt;br&gt;&amp;gt; just the menu on the left side. The document was not uploaded and of course
&lt;br&gt;&amp;gt; I can't query it.
&lt;br&gt;&amp;gt; What's wrong?
&lt;br&gt;&lt;br&gt;450MB are a bit too much for uploading via web forms. I guess the web
&lt;br&gt;server times out the request or runs out of memory.
&lt;br&gt;&lt;br&gt;Please use the Java admin client for jobs like this. For maximum
&lt;br&gt;performance, you can launch the client in embedded mode, which saves
&lt;br&gt;you the time for uploading the data.
&lt;br&gt;&lt;br&gt;To parse the DBLP fast enough, you should also increase cacheSize in
&lt;br&gt;conf.xml, as well as provide a little more memory to Java. Please read
&lt;br&gt;the following notes though:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://atomic.exist-db.org/blogs/eXist/WarningBadMemory&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://atomic.exist-db.org/blogs/eXist/WarningBadMemory&lt;/a&gt;&lt;br&gt;&lt;br&gt;Wolfgang
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18254847&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Having-problem-indexing-uploading-large-xml-document-%28450MB%29-tp18250181p18254847.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18253638</id>
	<title>Re: modeling challenges</title>
	<published>2008-07-03T00:51:19Z</published>
	<updated>2008-07-03T00:51:19Z</updated>
	<author>
		<name>Chris Wallace</name>
	</author>
	<content type="html">Christophe
&lt;br&gt;&lt;br&gt;Yes Will's articles are very useful. &amp;nbsp;I often encounter the view that XML data is un-normalised (in the sense of non-redundant) which I assume is because they have seen data transport XML schemas where de-normalisation is common. Read-only XML documents often trade ease of navigation for document size and redundancy because the documents are not intended to be updatable. &amp;nbsp;XML designed for data storage is quite different and should be designed to avoid redundancy in just the same way as a relational database. It seems to me that XML databases are easier to normalise because their non-first normal form structure allows those sneaky bits of denormalisation which occur with 1 to 1.0001 relationships can be represented properly without the pain of another table.
&lt;br&gt;&lt;br&gt;Will discusses the use of the XML schema constructs of key and keyref. &amp;nbsp;These may be useful in a transport use case &amp;nbsp;where the whole of a domain is represented and the task is to check that a generated XML document conforms to its schema before accepting the document. &amp;nbsp;For XML databases they are less useful because they only work in document scope. &amp;nbsp;If the XML database designer organises the logical data storage as files in collections, these constructs have the wrong scope; if she organises all data in a single document, the cost of revalidating the whole database every update would be prohibitive. &amp;nbsp;Hence a rather unsatisfactory set of adhoc mechanisms seem to be used to check if not enforce integrity. &amp;nbsp;eXIst supports triggers which are useful here but I'm ashamed to say I have not used myself.
&lt;br&gt;&lt;br&gt;Chris
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;geiser ch. wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message&quot;&gt;Hi Chris
&lt;br&gt;Thanks a lot for sharing those thoughts, that is really helpful. 
&lt;br&gt;For those who - like me - lack experience in xml modeling, I also came across this article that helped me clarify some concepts:
&lt;br&gt;&lt;a href=&quot;http://www.xml.com/pub/a/2002/12/04/normalizing.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.xml.com/pub/a/2002/12/04/normalizing.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Christophe
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/modeling-challenges-tp18230955p18253638.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18251879</id>
	<title>Re: Having problem indexing/uploading large xml document (450MB)</title>
	<published>2008-07-02T22:00:04Z</published>
	<updated>2008-07-02T22:00:04Z</updated>
	<author>
		<name>Pierrick Brihaye</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;Felipe Hummel a écrit :
&lt;br&gt;&lt;br&gt;&amp;gt; Hi, I'm working with de DBLP xml dataset, which is about 450MB, I went 
&lt;br&gt;&amp;gt; to the admin section of eXist, then to the Browse Selection and tried to 
&lt;br&gt;&amp;gt; upload the document. It takes a few seconds, and then a blank page shows 
&lt;br&gt;&amp;gt; up with just the menu on the left side. The document was not uploaded 
&lt;br&gt;&amp;gt; and of course I can't query it.
&lt;br&gt;&amp;gt; What's wrong?
&lt;br&gt;&lt;br&gt;See the logs : they should tell you what's going wrong. Possibly a 
&lt;br&gt;memory issue.
&lt;br&gt;&lt;br&gt;FYI : eXist's benchmark uses the DBLP without any problem.
&lt;br&gt;&lt;br&gt;Cheers,
&lt;br&gt;&lt;br&gt;p.b.
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18251879&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Having-problem-indexing-uploading-large-xml-document-%28450MB%29-tp18250181p18251879.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18251447</id>
	<title>Re: modeling challenges</title>
	<published>2008-07-02T20:58:40Z</published>
	<updated>2008-07-02T20:58:40Z</updated>
	<author>
		<name>geiser ch.</name>
	</author>
	<content type="html">Hi Chris
&lt;br&gt;Thanks a lot for sharing those thoughts, that is really helpful. 
&lt;br&gt;For those who - like me - lack experience in xml modeling, I also came across this article that helped me clarify some concepts:
&lt;br&gt;&lt;a href=&quot;http://www.xml.com/pub/a/2002/12/04/normalizing.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.xml.com/pub/a/2002/12/04/normalizing.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;Cheers
&lt;br&gt;Christophe
&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;Chris Wallace wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi Christophe
&lt;br&gt;&lt;br&gt;These are all good questions. &amp;nbsp;Here are a few thoughts gleaned from the past couple of years working on project which involves quite large number of schemas spanning the range from tabular to hierarchical structured data and teaching both Relational and XML databases. &amp;nbsp;The application ( a faculty information system to support staff, students and administrators) is technically rather benign but is rich in data and needs to be very responsive to changed needs - an 'agile information system'. &amp;nbsp;
&lt;br&gt;&lt;br&gt;I believe ER modelling is just as important for an XML database as it is for relational databases. &amp;nbsp;That is conceptual ER modelling at a high enough level to abstract over the way relationships are implemented. &amp;nbsp;A good tool should be able to generated either a relational model or a multiple-schema model although it would need some hinting. I haven't found such a tool although QSEE has some useful features. Largely I think of XML databases as object-oriented databases but with meaningful keys, no methods (namespaced functions have to do instead) and no inheritance.
&lt;br&gt;&lt;br&gt;The main difference is in the modelling of composition or whole part relationships with parent/child relationships rather than foreign keys, which is the only mechanism for implementing relationships in RDBMS. &amp;nbsp;In my domain, &amp;nbsp;composition relationships account for about 80% of relationships, hence a significant reduction in the database complexity. The remainder of the (associative) relationships have to be represented using foreign keys, and as in RDBMS, any shared data values are usable. &amp;nbsp;However the ability to implement repeated elements in XML means that there is more flexibility in how one-many and especially many-many relationships are implemented. &amp;nbsp;Rather than necessitating a link table, it is common to implement many-many relationships with repeated foreign keys on whichever side of the relationship is most salient - surprisingly often this is an easy decision and reflects the real-world ownership of the relationship. Often the relationships are structured or ordered on one side.
&lt;br&gt;&lt;br&gt;We also make use of repeated elements as primary keys - for example people are identified in our system by name (a key idea is to minimise the distance between real-world data and system data) , but they can have multiple names so people can add names, and promote one to be the preferred name &amp;nbsp;but never 'change' name.
&lt;br&gt;&lt;br&gt;As far as integrity is concerned, I have a rather lax view. &amp;nbsp;In my domain, the database is almost never consistent since changes are made to different entities at different times by different people. &amp;nbsp;I want the database to &amp;nbsp;help in the concurrent development of the content, &amp;nbsp;and if this leads to inconsistencies which have to be analysed on demand, so be it - the web is never consistent either! &amp;nbsp;So I concentrated on the definition of rules covering both simple integrity, business rules and data quality and analysis of the database.
&lt;br&gt;&lt;br&gt;Thanks for the thought-provoking question - I will try to distill my experience for an article in the wiki or elsewhere . I don't know about asset-oriented modelling and will take a look.
&lt;br&gt;&lt;br&gt;Chris Wallace
&lt;br&gt;UWE Bristol
&lt;br&gt;&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/modeling-challenges-tp18230955p18251447.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18250181</id>
	<title>Having problem indexing/uploading large xml document (450MB)</title>
	<published>2008-07-02T18:37:09Z</published>
	<updated>2008-07-02T18:37:09Z</updated>
	<author>
		<name>Felipe Hummel</name>
	</author>
	<content type="html">Hi, I&amp;#39;m working with de DBLP xml dataset, which is about 450MB, I went to the admin section of eXist, then to the Browse Selection and tried to upload the document. It takes a few seconds, and then a blank page shows up with just the menu on the left side. The document was not uploaded and of course I can&amp;#39;t query it.&lt;br&gt;
What&amp;#39;s wrong?&lt;br&gt;&lt;br&gt;&lt;br&gt;Another question I have, is not really about eXist, but I think someone here can anwser. I&amp;#39;m parsing this DBLP XML dataset (with 450MB) with the Xerces SAX Parser (java). The problem is i&amp;#39;m getting the 64000 entity expansion limit error, with the limit up to 100000 I still get the error, but when I raise the limit again to 150000 or more, the parser takes hours and doens&amp;#39;t finish. I also tried to set FEATURE_SECURE_PROCESSING to false, so the parser stop worrying about entity limit, but it still takes hours to index. Anyone knows this problem?&lt;br&gt;
&amp;nbsp;&lt;br&gt;&lt;br&gt;Thanks&lt;br&gt;&lt;br&gt;Felipe Hummel&lt;br&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18250181&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Having-problem-indexing-uploading-large-xml-document-%28450MB%29-tp18250181p18250181.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18244846</id>
	<title>Re: Preview: eXist-db 1.3.0dev</title>
	<published>2008-07-02T12:20:28Z</published>
	<updated>2008-07-02T12:20:28Z</updated>
	<author>
		<name>Wolfgang Meier-2</name>
	</author>
	<content type="html">&amp;gt; Is this the same as what I saw in the 1.2 changelog, or something different?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 7885 by wolfgang_m &amp;nbsp;at 2008-06-19T15:10:48.345+01:00
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; [performance] reduce memory consumption of in-memory documents constructed
&lt;br&gt;&amp;gt; during a query. If you have a query which constructs thousands of small
&lt;br&gt;&amp;gt; temporary XML fragments, each of those fragments will have its own document
&lt;br&gt;&amp;gt; context...
&lt;br&gt;&lt;br&gt;No, that's not the same. The revision above was indeed ported back to 
&lt;br&gt;the eXist-stable-1.2 branch. It will be part of 1.2.4 (not 1.2.3). In 
&lt;br&gt;the meantime, you can check out the code from the branch, which is the 
&lt;br&gt;basis for all 1.2 releases:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://exist.svn.sourceforge.net/viewvc/exist/branches/eXist-stable-1.2/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://exist.svn.sourceforge.net/viewvc/exist/branches/eXist-stable-1.2/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&amp;gt; In any case, for XQuery performance benchmarking would you recommend I use
&lt;br&gt;&amp;gt; the latest snapshot (1.3.0dev)?
&lt;br&gt;&lt;br&gt;If you are querying in-memory XML fragments, then you should test with 
&lt;br&gt;1.3. Just watch out for log messages like:
&lt;br&gt;&lt;br&gt;02 Jul 2008 21:18:22,649 [main] DEBUG (XQueryContext.java 
&lt;br&gt;[storeTemporaryDoc]:2192) - Stored: 174299: 
&lt;br&gt;/db/system/temp/08bbc50be05426c6cdf0a7deba8dba03.xml
&lt;br&gt;&lt;br&gt;If you see those, switching to 1.3 will give you performance benefits.
&lt;br&gt;&lt;br&gt;Wolfgang
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18244846&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Preview%3A-eXist-db-1.3.0dev-tp18243703p18244846.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18244761</id>
	<title>Re: Preview: eXist-db 1.3.0dev</title>
	<published>2008-07-02T12:16:07Z</published>
	<updated>2008-07-02T12:16:07Z</updated>
	<author>
		<name>Gary Larsen</name>
	</author>
	<content type="html">&amp;gt; Is this the same as what I saw in the 1.2 changelog, or something
&lt;br&gt;&amp;gt; different?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 7885 by wolfgang_m &amp;nbsp;at 2008-06-19T15:10:48.345+01:00
&lt;br&gt;&lt;br&gt;After reading the changelog for 1.3 I see the there has been additional work
&lt;br&gt;after 7885. 
&lt;br&gt;&lt;br&gt;Sorry for the noise.
&lt;br&gt;gary
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18244761&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Preview%3A-eXist-db-1.3.0dev-tp18243703p18244761.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18244434</id>
	<title>Re: Preview: eXist-db 1.3.0dev</title>
	<published>2008-07-02T12:01:16Z</published>
	<updated>2008-07-02T12:01:16Z</updated>
	<author>
		<name>Gary Larsen</name>
	</author>
	<content type="html">Hi,
&lt;br&gt;&lt;br&gt;&amp;gt; No, the temporary fragment issues required more than a fix, rather a
&lt;br&gt;&amp;gt; redesign. I had to change the way in which the query engine handles
&lt;br&gt;&amp;gt; in-memory XML nodes (for more info see:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://atomic.exist-db.org/blogs/eXist/InMemoryFragments&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://atomic.exist-db.org/blogs/eXist/InMemoryFragments&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;Is this the same as what I saw in the 1.2 changelog, or something different?
&lt;br&gt;&lt;br&gt;7885 by wolfgang_m &amp;nbsp;at 2008-06-19T15:10:48.345+01:00
&lt;br&gt;&lt;br&gt;[performance] reduce memory consumption of in-memory documents constructed
&lt;br&gt;during a query. If you have a query which constructs thousands of small
&lt;br&gt;temporary XML fragments, each of those fragments will have its own document
&lt;br&gt;context...
&lt;br&gt;&lt;br&gt;In any case, for XQuery performance benchmarking would you recommend I use
&lt;br&gt;the latest snapshot (1.3.0dev)?
&lt;br&gt;&lt;br&gt;Thanks! &amp;nbsp;Sorry for my confusion.
&lt;br&gt;gary
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18244434&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Preview%3A-eXist-db-1.3.0dev-tp18243703p18244434.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18244076</id>
	<title>Re: Preview: eXist-db 1.3.0dev</title>
	<published>2008-07-02T11:40:42Z</published>
	<updated>2008-07-02T11:40:42Z</updated>
	<author>
		<name>Wolfgang Meier-2</name>
	</author>
	<content type="html">&amp;gt;&amp;gt; releases. The main solved issue is the &amp;quot;temporary fragment&amp;quot; thingy.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; My understanding is that this fix was also ported back to version 1.2.3. &amp;nbsp;Is
&lt;br&gt;&amp;gt; that correct?
&lt;br&gt;&lt;br&gt;No, the temporary fragment issues required more than a fix, rather a 
&lt;br&gt;redesign. I had to change the way in which the query engine handles 
&lt;br&gt;in-memory XML nodes (for more info see: 
&lt;br&gt;&lt;a href=&quot;http://atomic.exist-db.org/blogs/eXist/InMemoryFragments&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://atomic.exist-db.org/blogs/eXist/InMemoryFragments&lt;/a&gt;).
&lt;br&gt;&lt;br&gt;Porting those changes back to 1.2.3 would be possible, but still quite a 
&lt;br&gt;lot of work. I think we should rather put this work into testing and 
&lt;br&gt;stabilizing 1.3.
&lt;br&gt;&lt;br&gt;Wolfgang
&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18244076&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Preview%3A-eXist-db-1.3.0dev-tp18243703p18244076.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18243968</id>
	<title>Re: Preview: eXist-db 1.3.0dev</title>
	<published>2008-07-02T11:34:31Z</published>
	<updated>2008-07-02T11:34:31Z</updated>
	<author>
		<name>Gary Larsen</name>
	</author>
	<content type="html">Hi Dannes,
&lt;br&gt;&lt;br&gt;&amp;gt; releases. The main solved issue is the &amp;quot;temporary fragment&amp;quot; thingy.
&lt;br&gt;&lt;br&gt;My understanding is that this fix was also ported back to version 1.2.3. &amp;nbsp;Is
&lt;br&gt;that correct?
&lt;br&gt;&lt;br&gt;Thanks,
&lt;br&gt;Gary
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18243968&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Preview%3A-eXist-db-1.3.0dev-tp18243703p18243968.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18243708</id>
	<title>Re: modeling challenges</title>
	<published>2008-07-02T11:18:31Z</published>
	<updated>2008-07-02T11:18:31Z</updated>
	<author>
		<name>Chris Wallace</name>
	</author>
	<content type="html">Hi Christophe
&lt;br&gt;&lt;br&gt;These are all good questions. &amp;nbsp;Here are a few thoughts gleaned from the past couple of years working on project which involves quite large number of schemas spanning the range from tabular to hierarchical structured data and teaching both Relational and XML databases. &amp;nbsp;The application ( a faculty information system to support staff, students and administrators) is technically rather benign but is rich in data and needs to be very responsive to changed needs - an 'agile information system'. &amp;nbsp;
&lt;br&gt;&lt;br&gt;I believe ER modelling is just as important for an XML database as it is for relational databases. &amp;nbsp;That is conceptual ER modelling at a high enough level to abstract over the way relationships are implemented. &amp;nbsp;A good tool should be able to generated either a relational model or a multiple-schema model although it would need some hinting. I haven't found such a tool although QSEE has some useful features. Largely I think of XML databases as object-oriented databases but with meaningful keys, no methods (namespaced functions have to do instead) and no inheritance.
&lt;br&gt;&lt;br&gt;The main difference is in the modelling of composition or whole part relationships with parent/child relationships rather than foreign keys, which is the only mechanism for implementing relationships in RDBMS. &amp;nbsp;In my domain, &amp;nbsp;composition relationships account for about 80% of relationships, hence a significant reduction in the database complexity. The remainder of the (associative) relationships have to be represented using foreign keys, and as in RDBMS, any shared data values are usable. &amp;nbsp;However the ability to implement repeated elements in XML means that there is more flexibility in how one-many and especially many-many relationships are implemented. &amp;nbsp;Rather than necessitating a link table, it is common to implement many-many relationships with repeated foreign keys on whichever side of the relationship is most salient - surprisingly often this is an easy decision and reflects the real-world ownership of the relationship. Often the relationships are structured or ordered on one side.
&lt;br&gt;&lt;br&gt;We also make use of repeated elements as primary keys - for example people are identified in our system by name (a key idea is to minimise the distance between real-world data and system data) , but they can have multiple names so people can add names, and promote one to be the preferred name &amp;nbsp;but never 'change' name.
&lt;br&gt;&lt;br&gt;As far as integrity is concerned, I have a rather lax view. &amp;nbsp;In my domain, the database is almost never consistent since changes are made to different entities at different times by different people. &amp;nbsp;I want the database to &amp;nbsp;help in the concurrent development of the content, &amp;nbsp;and if this leads to inconsistencies which have to be analysed on demand, so be it - the web is never consistent either! &amp;nbsp;So I concentrated on the definition of rules covering both simple integrity, business rules and data quality and analysis of the database.
&lt;br&gt;&lt;br&gt;Thanks for the thought-provoking question - I will try to distill my experience for an article in the wiki or elsewhere . I don't know about asset-oriented modelling and will take a look.
&lt;br&gt;&lt;br&gt;Chris Wallace
&lt;br&gt;UWE Bristol
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;blockquote class=&quot;quote light-black dark-border-color&quot;&gt;&lt;div class=&quot;quote light-border-color&quot;&gt;
&lt;div class=&quot;quote-author&quot; style=&quot;font-weight: bold;&quot;&gt;geiser ch. wrote:&lt;/div&gt;
&lt;div class=&quot;quote-message shrinkable-quote&quot;&gt;Hi eXist universe
&lt;br&gt;Coming from an SQL world where plenty of modeling tools exist, I kind of feel that I would need some advice on best modeling approach in an xml environment. 
&lt;br&gt;I am about to start building a new web-app and I would like to test the xforms/rest/xquery paradigm and therefore use eXist as a key piece for this. After some research on the web, I am still facing two main difficulties:
&lt;br&gt;-	I am still not really sure how to shift from the entity/relationship conceptual framework or how to make it properly fit in an xml hierarchical world. Also, though I see xml schema as a key building blocks in the modeling process, I wish I could stay at a higher conceptual level in the early phase of modeling. I came across the asset object modeling approach (&lt;a href=&quot;http://www.aomodeling.org/KLEEN%20WhitePaper.pdf&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aomodeling.org/KLEEN%20WhitePaper.pdf&lt;/a&gt;) which seems quite interesting in this case (though I could not make the tool work, and there does not seem to be any active user group). Does anybody uses a similar approach or could recommend one? I guess (hope?) I am not the only one experimenting this as a real challenge.
&lt;br&gt;-	This is more related to eXist. Is there any best practices or resources on how to structure the xml database re a model (e.g. what would make a good hierarchy of collection, how best to implement multiple relationship, how to enforce relational integrity,...). At this stage I am not so concerned with performance issues, but rather try to come up with a consistent development approach – it often pays off in the long run...
&lt;br&gt;I know there is no simple answer to those questions, but any suggestion / recommendations would be welcome 
&lt;br&gt;Thank you
&lt;br&gt;Christophe
&lt;/div&gt;
&lt;/div&gt;&lt;/blockquote&gt;
&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/modeling-challenges-tp18230955p18243708.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18243703</id>
	<title>Preview: eXist-db 1.3.0dev</title>
	<published>2008-07-02T11:18:10Z</published>
	<updated>2008-07-02T11:18:10Z</updated>
	<author>
		<name>Dannes Wessels-2</name>
	</author>
	<content type="html">All,
&lt;br&gt;&lt;br&gt;A few moments ago I have uploaded a new preview of our current trunk
&lt;br&gt;(snapshot of development code) to &lt;a href=&quot;http://www.exist-db.nl/files/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.exist-db.nl/files/&lt;/a&gt;&amp;nbsp;. This
&lt;br&gt;release provides some significant changes compared to the 1.2.x
&lt;br&gt;releases. The main solved issue is the &amp;quot;temporary fragment&amp;quot; thingy.
&lt;br&gt;&lt;br&gt;This snapshot contains a few significant performance improvements,
&lt;br&gt;which are also part of the upcoming 1.2.4 release
&lt;br&gt;&lt;br&gt;for more details check the changelog.
&lt;br&gt;&lt;br&gt;As it is bleeding edge stuff, bugs and instabilities can be expected
&lt;br&gt;(the disclaimer :-) ). You can help us to improve the release by
&lt;br&gt;reporting issues (and success stories) on this MailingList.
&lt;br&gt;&lt;br&gt;On behalf of the development team
&lt;br&gt;&lt;br&gt;Dannes Wessels
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18243703&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dizzzz@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;http://exist-db.org&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://exist-db.org&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18243703&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/Preview%3A-eXist-db-1.3.0dev-tp18243703p18243703.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18239413</id>
	<title>Re: SOAP interface and Flex</title>
	<published>2008-07-02T07:52:59Z</published>
	<updated>2008-07-02T07:52:59Z</updated>
	<author>
		<name>Dominik Piekarczyk</name>
	</author>
	<content type="html">Thanks for your answer, Adam. My reply&amp;#39;s below:&lt;br&gt;&lt;div class=&quot;gmail_quote&quot;&gt;&lt;div&gt;&amp;nbsp;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;Have you tried this with a really simple XQuery? e.g.&lt;br&gt;

&lt;br&gt;
xquery version &amp;quot;1.0&amp;quot;;&lt;br&gt;
&lt;br&gt;
&amp;lt;dateTime&amp;gt;{current-dateTime()}&amp;lt;/dateTime&amp;gt;&lt;br&gt;
&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;This is a smart idea, no data is included so I don&amp;#39;t have to worry about data paths. But the result is the same, unfortunately. I&amp;#39;ve tried that date function and even just to push &amp;lt;a&amp;gt;b&amp;lt;/a&amp;gt; to the client.&lt;br&gt;
&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;I would also recommend that you try this outside of Adobe Flex, do you&lt;br&gt;
have something like Web Service Studio or oXygen (it has a Web Service&lt;br&gt;
test tool). Try connecting to the service and sending your simple&lt;br&gt;
query request from there, the nice thing about this is then that you&lt;br&gt;
can see the SOAP Request and Response.&lt;br&gt;
&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;So I tried. I used SoapUI tool and I&amp;#39;ve sent some requests. The result is the more less the same: I can connect, get resource, but I still don&amp;#39;t have satisfying response while sending xquery.&lt;br&gt;
&lt;br&gt;This is an example of request and response:&lt;br&gt;&lt;br&gt;&amp;lt;soapenv:Envelope xmlns:soapenv=&amp;quot;&lt;a href=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://schemas.xmlsoap.org/soap/envelope/&lt;/a&gt;&amp;quot; xmlns:urn=&amp;quot;urn:exist&amp;quot;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp; &amp;lt;soapenv:Header/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;lt;soapenv:Body&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;urn:xquery&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;urn:sessionId&amp;gt;4630104&amp;lt;/urn:sessionId&amp;gt;&lt;br&gt;&lt;div style=&quot;margin-left: 40px;&quot;&gt;&amp;lt;urn:xquery&amp;gt;eHF1ZXJ5IHZlcnNpb24gIjEuMCI7DQ08ZGF0ZVRpbWU+e2N1cnJlbnQtZGF0ZVRpbWUoKX08L2RhdGVUaW1lPg==&amp;lt;/urn:xquery&amp;gt;&lt;br&gt;
&lt;/div&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/urn:xquery&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/soapenv:Body&amp;gt;&lt;br&gt;&amp;lt;/soapenv:Envelope&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;soapenv:Envelope xmlns:soapenv=&amp;quot;&lt;a href=&quot;http://schemas.xmlsoap.org/soap/envelope/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://schemas.xmlsoap.org/soap/envelope/&lt;/a&gt;&amp;quot; xmlns:xsd=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema&lt;/a&gt;&amp;quot; xmlns:xsi=&amp;quot;&lt;a href=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/2001/XMLSchema-instance&lt;/a&gt;&amp;quot;&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp; &amp;lt;soapenv:Body&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xqueryResponse xmlns=&amp;quot;urn:exist&amp;quot;&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;xqueryReturn&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;collections/&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;hits&amp;gt;1&amp;lt;/hits&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;queryTime&amp;gt;0&amp;lt;/queryTime&amp;gt;&lt;br&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/xqueryReturn&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/xqueryResponse&amp;gt;&lt;br&gt;&amp;nbsp;&amp;nbsp; &amp;lt;/soapenv:Body&amp;gt;&lt;br&gt;&amp;lt;/soapenv:Envelope&amp;gt;&lt;br&gt;&lt;br&gt;Is this what I was supposed to get as an answer? I expected rather current datetime, like in xquery sandbox. I&amp;#39;ve tried to broke the base64 data string and the server response with an exception. So it&amp;#39;s good.&lt;br&gt;
&lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;
Also, you may find the REST interface easier than the SOAP interface.&lt;br&gt;
With the REST interface you can GET for simple queries with a&lt;br&gt;
querystring parameter _query or for more complex queries you can POST&lt;br&gt;
an XQuery.&lt;br&gt;
&lt;/blockquote&gt;&lt;div&gt;&amp;nbsp;&lt;br&gt;I will probably go to the REST interface. I preferred SOAP, it&amp;#39;s much more elegant and handy in Flex.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;

There is also a SOAPServer in eXist which is different to the default&lt;br&gt;
SOAP Webservices you are using, you can find details in&lt;br&gt;
EXIST_HOME/tools/SOAPServer - this will enable you to write and store&lt;br&gt;
xqueries in the database and expose them as SOAP Webservices.&lt;br&gt;
&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;I don&amp;#39;t see it in my folder, but even if - I will rather use REST interface which is documented and I can count for some help from other developers.&lt;br&gt;&lt;br&gt;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;

Thanks Adam&lt;br&gt;
&lt;/blockquote&gt;&lt;div&gt;&lt;br&gt;Thanks Adam :)&lt;br&gt;&lt;br&gt;&lt;br&gt;Dominik&lt;br&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&amp;nbsp;&lt;/div&gt;&lt;blockquote class=&quot;gmail_quote&quot; style=&quot;border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;&quot;&gt;&lt;div&gt;&lt;div class=&quot;Wj3C7c&quot;&gt;
&amp;gt; Hi all.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; This is my first message to the list.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; First I&amp;#39;ll introduce my idea:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; A few days ago I&amp;#39;ve found eXist to be just ideal combination with Flex and&lt;br&gt;
&amp;gt; it&amp;#39;s web services interface. Flex has great tools for working with XML data&lt;br&gt;
&amp;gt; and (in small applications) communication with an XML DB via web services&lt;br&gt;
&amp;gt; could allow me avoiding server side software - it&amp;#39;s pretty much, I don&amp;#39;t&lt;br&gt;
&amp;gt; have to use yet another language like Java, PHP, and so on.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; BUT (the problem) :&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Well, I cannot get proper response from xquery operation. I really really&lt;br&gt;
&amp;gt; tried to manage it in many ways.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; SOME FACTS:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; * xquery is the first web services&amp;#39; operation on my way that does not&lt;br&gt;
&amp;gt; work. Some other do, like getVersion (here&amp;#39;s the whole flex&amp;#39;s web service&lt;br&gt;
&amp;gt; definition):&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;mx:WebService&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; wsdl=&amp;quot;&lt;a href=&quot;http://localhost:8080/exist/services/Version?wsdl&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/exist/services/Version?wsdl&lt;/a&gt;&amp;quot;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; id=&amp;quot;eXistVersionWS&amp;quot;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; result=&amp;quot;queryWSResultHandler(event)&amp;quot;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; fault=&amp;quot;queryWSFaultHandler(event)&amp;quot;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; useProxy=&amp;quot;false&amp;quot;&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:operation name=&amp;quot;getVersion&amp;quot; /&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:WebService&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; * Another working operations:&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:operation name=&amp;quot;connect&amp;quot;&lt;br&gt;
&amp;gt; result=&amp;quot;connectQueryWSResultHandler(event)&amp;quot;&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:request xmlns=&amp;quot;&amp;quot;&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;userId&amp;gt;admin&amp;lt;/userId&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;password&amp;gt;admin&amp;lt;/password&amp;gt; (here I&amp;#39;ve changed password from&lt;br&gt;
&amp;gt; default null)&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:request&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:operation&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:operation name=&amp;quot;disconnect&amp;quot;&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:request xmlns=&amp;quot;&amp;quot;&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sessionId&amp;gt;{this.sessionId}&amp;lt;/sessionId&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:request&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:operation&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:operation name=&amp;quot;getResourceData&amp;quot;&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:request xmlns=&amp;quot;&amp;quot;&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sessionId&amp;gt;{this.sessionId}&amp;lt;/sessionId&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;path&amp;gt;{inputReourcePath.text}&amp;lt;/path&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;indent&amp;gt;true&amp;lt;/indent&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xinclude&amp;gt;false&amp;lt;/xinclude&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;processXSLPI&amp;gt;false&amp;lt;/processXSLPI&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:request&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:operation&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; * And this is the problematic operation:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:operation name=&amp;quot;xquery&amp;quot;&lt;br&gt;
&amp;gt; result=&amp;quot;xqueryQueryWSResultHandler(event)&amp;quot;&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;mx:request xmlns=&amp;quot;&amp;quot;&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;sessionId&amp;gt;{this.sessionId}&amp;lt;/sessionId&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;xquery&amp;gt;{encodedInput.text}&amp;lt;/xquery&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:request&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/mx:operation&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; I&amp;#39;ve checked the request several times, it&amp;#39;s encoded properly (I&amp;#39;ve&lt;br&gt;
&amp;gt; decoded it to be sure), sessionId works fine with getResourceData operation,&lt;br&gt;
&amp;gt; so it&amp;#39;s fine. I always get the message:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; &amp;nbsp; [RPC Fault faultString=&amp;quot;HTTP request error&amp;quot;&lt;br&gt;
&amp;gt; faultCode=&amp;quot;Server.Error.Request&amp;quot; faultDetail=&amp;quot;Error: [IOErrorEvent&lt;br&gt;
&amp;gt; type=&amp;quot;ioError&amp;quot; bubbles=false cancelable=false eventPhase=2 text=&amp;quot;Error&lt;br&gt;
&amp;gt; #2032: Stream Error. URL: &lt;a href=&quot;http://localhost:8080/exist/services/Query&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/exist/services/Query&lt;/a&gt;&amp;quot;]. URL:&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://localhost:8080/exist/services/Query&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://localhost:8080/exist/services/Query&lt;/a&gt;&amp;quot;]&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; THE QUESTION(s):&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; &amp;nbsp; * Is it a problem with a query I&amp;#39;m sending? It&amp;#39;s true that these are my&lt;br&gt;
&amp;gt; first steps with xquery language, but I&amp;#39;ve tried sooo many examples from&lt;br&gt;
&amp;gt; eXist resources and xquery sandbox that it&amp;#39;s unlikely I couldn&amp;#39;t just have&lt;br&gt;
&amp;gt; one lucky shot :)&lt;br&gt;
&amp;gt; &amp;nbsp; * Could you give me some examples of &amp;lt;xquery&amp;gt; parameter that have to work&lt;br&gt;
&amp;gt; (with existing default examples).&lt;br&gt;
&amp;gt; &amp;nbsp; * Do you see any other mistakes I could make?&lt;br&gt;
&amp;gt; &amp;nbsp; * Has anybody any experiences with combining Flex with such XML DBs? It&lt;br&gt;
&amp;gt; seems to be so natural that it&amp;#39;s just strange to me that I don&amp;#39;t see any&lt;br&gt;
&amp;gt; working examples.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Help me, please, I&amp;#39;m stuck. But the idea is too elegant I would like to give&lt;br&gt;
&amp;gt; up.&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; Greetings&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; --&lt;br&gt;
&amp;gt; Dominik Piekarczyk&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://www.araneo.pl&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;www.araneo.pl&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&amp;gt; -------------------------------------------------------------------------&lt;br&gt;
&amp;gt; Check out the new SourceForge.net Marketplace.&lt;br&gt;
&amp;gt; It&amp;#39;s the best place to buy or sell services for&lt;br&gt;
&amp;gt; just about anything Open Source.&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://sourceforge.net/services/buy/index.php&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;http://sourceforge.net/services/buy/index.php&lt;/a&gt;&lt;br&gt;
&amp;gt; _______________________________________________&lt;br&gt;
&amp;gt; Exist-open mailing list&lt;br&gt;
&amp;gt; &lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18239413&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;&lt;br&gt;
&amp;gt; &lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt;&lt;br&gt;
&lt;font color=&quot;#888888&quot;&gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
--&lt;br&gt;
Adam Retter&lt;br&gt;
&lt;br&gt;
eXist Developer&lt;br&gt;
{ England }&lt;br&gt;
&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18239413&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;adam@...&lt;/a&gt;&lt;br&gt;
irc://&lt;a href=&quot;http://irc.freenode.net/existdb&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;irc.freenode.net/existdb&lt;/a&gt;&lt;br&gt;
&lt;/font&gt;&lt;/blockquote&gt;&lt;/div&gt;&lt;br&gt;&lt;br clear=&quot;all&quot;&gt;&lt;br&gt;-- &lt;br&gt;--&lt;br&gt;Dominik Piekarczyk&lt;br&gt;&lt;a href=&quot;http://www.araneo.pl&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;www.araneo.pl&lt;/a&gt;
&lt;br /&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;along with a healthy diet, reduces your potential for chronic lameness
&lt;br&gt;and boredom. Vote Now at &lt;a href=&quot;http://www.sourceforge.net/community/cca08&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.sourceforge.net/community/cca08&lt;/a&gt;&lt;br /&gt;_______________________________________________
&lt;br&gt;Exist-open mailing list
&lt;br&gt;&lt;a href=&quot;http://www.nabble.com/user/SendEmail.jtp?type=post&amp;post=18239413&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;Exist-open@...&lt;/a&gt;
&lt;br&gt;&lt;a href=&quot;https://lists.sourceforge.net/lists/listinfo/exist-open&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://lists.sourceforge.net/lists/listinfo/exist-open&lt;/a&gt;&lt;br&gt;&lt;p&gt;From forum: &lt;a href=&quot;http://www.nabble.com/exist-open-f4073.html&quot; embed=&quot;fixTarget[4073]&quot; target=&quot;_top&quot; &gt;exist-open&lt;/a&gt;&lt;/p&gt;</content>
	<link rel="alternate" type="text/html" href="http://www.nabble.com/SOAP-interface-and-Flex-tp18217200p18239413.html" />
</entry>

<entry>
	<id>tag:www.nabble.com,2006:post-18231538</id>
	<title>[ exist-Bugs-2008506 ] sessions failing</title>
	<published>2008-07-01T23:19:10Z</published>
	<updated>2008-07-01T23:19:10Z</updated>
	<author>
		<name>SourceForge.net</name>
	</author>
	<content type="html">Bugs item #2008506, was opened at 2008-07-02 06:19
&lt;br&gt;Message generated for change (Tracker Item Submitted) made by Item Submitter
&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=117691&amp;aid=2008506&amp;group_id=17691&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=117691&amp;aid=2008506&amp;group_id=17691&lt;/a&gt;&lt;br&gt;&lt;br&gt;Please note that this message will contain a full copy of the comment thread,
&lt;br&gt;including the initial issue submission, for this request,
&lt;br&gt;not just the latest update.
&lt;br&gt;Category: None
&lt;br&gt;Group: None
&lt;br&gt;Status: Open
&lt;br&gt;Resolution: None
&lt;br&gt;Priority: 5
&lt;br&gt;Private: No
&lt;br&gt;Submitted By: cjwallace (cjwallace)
&lt;br&gt;Assigned to: Nobody/Anonymous (nobody)
&lt;br&gt;Summary: sessions failing
&lt;br&gt;&lt;br&gt;Initial Comment:
&lt;br&gt;1.3dev
&lt;br&gt;Session variables can be set and got in the same script, but are not to be retained between calls. Thus applications using sessions which previously worked do not now. 
&lt;br&gt;&lt;br&gt;For example the example script in the XQuery Wikibook demonstrating the use of sessions:
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://en.wikibooks.org/wiki/XQuery/Adder#Example&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://en.wikibooks.org/wiki/XQuery/Adder#Example&lt;/a&gt;&amp;nbsp;Using Session Variables
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;----------------------------------------------------------------------
&lt;br&gt;&lt;br&gt;You can respond by visiting: 
&lt;br&gt;&lt;a href=&quot;https://sourceforge.net/tracker/?func=detail&amp;atid=117691&amp;aid=2008506&amp;group_id=17691&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;https://sourceforge.net/tracker/?func=detail&amp;atid=117691&amp;aid=2008506&amp;group_id=17691&lt;/a&gt;&lt;br&gt;&lt;br&gt;-------------------------------------------------------------------------
&lt;br&gt;Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
&lt;br&gt;Studies have shown that voting for your favorite open source project,
&lt;br&gt;al