<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Building an XML Repository in Alfresco Archive</title>
    <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4650#M657</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Henry&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will have to do quite a lot of work to get an XML repository linked in.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am assuming that the database is not compatible with hibernate, and you would not want hibernate in any case, so you will require a new NodeService to support the persistence of meta data. You will also need a ContentService against an XML database.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The indexing into lucene should work given the node service and content services above. However, I am not sure if you would do all the search against lucene or the xml database. You could certainly combine the two using the NodeRef for each node as the key. The search can be configured to do what you want and you could have a SearchService that just goes to the XML database(s) or that also includes lucene in some way.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You would have to think about how scores from each result set are used to produce an overall result set. There are ideas in lucene for this. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Nov 2005 08:49:10 GMT</pubDate>
    <dc:creator>andy</dc:creator>
    <dc:date>2005-11-17T08:49:10Z</dc:date>
    <item>
      <title>Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4643#M650</link>
      <description>We are interested in using Alfresco as an XML repository.&amp;nbsp; In our system, incoming documents would be validated against a schema, and meta-data would be extracted from the XML.&amp;nbsp; Documents would then be sorted into spaces or categories based on this meta-data. Presumably these could be implemented as</description>
      <pubDate>Fri, 14 Oct 2005 19:44:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4643#M650</guid>
      <dc:creator>ctanis</dc:creator>
      <dc:date>2005-10-14T19:44:51Z</dc:date>
    </item>
    <item>
      <title>Re: Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4644#M651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We really have to start a conversation on alfresco plugin frameworks.&amp;nbsp; We need some way to build custom config and code and deploy it in a way in which it auto meshes with the "out of the box" software.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This would put alfresco miles ahead of any other open source systems and probably out in front period.&amp;nbsp; This kind of functionality is critical.&amp;nbsp; when people modify the core source base they put their entire system at risk in future upgrades.&amp;nbsp; this is not a good way.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;-R&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Oct 2005 16:43:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4644#M651</guid>
      <dc:creator>rdanner</dc:creator>
      <dc:date>2005-10-15T16:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4645#M652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Is meta-data stored in the Lucene index or only via hibernate?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Meta data is indexed in lucene, it would be possible to store it in lucene but we currently go to hibernate to get the meta data. Basically, if any property is not stored in the index we would get all properties (at once) from hibernate, so we do that.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;How would I go about adding a custom indexing component for XML documents?&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;At the moment tokenisation is controlled by the property type.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If we added an xml property type you could plug in whatever lucene tokenixer you fancy for your XML doc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The intention is to allow the tokeniser to be specified in the property definitition (or use the default for the property type). This is not available yet. The task is in jira as AR-177.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Content is indexed after converting to text form XML. You could control what conversion takes place and therefore how xml content is indexed.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dave may have somthing to say about adding a pluggable content pipeline for processing content as it is added. This could do the sort of stuff you are talking about: extracting meta data, building sub structure etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Oct 2005 09:32:04 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4645#M652</guid>
      <dc:creator>andy</dc:creator>
      <dc:date>2005-10-17T09:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4646#M653</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I agree that discussing a plugin framework is a good idea, but I was starting to get the impression that a lot of what I wanted to do was capable without touching the java source.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;At this point my goal is to appraise the capabilities of Alfresco, not necessarily to build a final working system.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the tips, Andy.&amp;nbsp; What about adding new&amp;nbsp; fields to the lucene index, for example to index each XML element as a different field.&amp;nbsp;&amp;nbsp; One option is to have the desired fields as meta-data in a new content type, but I can imagine a scenario in which more flexibility is desired.&amp;nbsp;&amp;nbsp; This is why I thought I might need a new indexing component, as opposed to just a new tokenizer.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;More importantly, will Alfresco allow arbitrary fields in the index?&amp;nbsp; Will lucene performance suffer if this is too arbitrary?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Craig&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 15:01:52 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4646#M653</guid>
      <dc:creator>ctanis</dc:creator>
      <dc:date>2005-10-18T15:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4647#M654</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The indexer takes care of indexing whatever node is given to it, including all of its properties. At the moment you can have multi-valued properties and they will be indexed together. All other properties will be indexed in their own right. Indexing, tokenising and the tokeniser can be controlled via the data dictionary.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would suggest mapping XML elements to nodes and attributes to properties as a first go. The lucene index supports an internal attribute PATH with allows you to do the name step bit of XPath on elements. I am guessing you will want something like this. And the XPATH selectNodes and selectAttributes on the searcher will also do what you expect. I would put the text() in a content node of some sort. You should then have path/content/meta data for searching.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This way you would not have to change the indexing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You could map the xml in any other way - may be keep the document as one node and just add meta data. Put the key attributes as properties, extract the text into a content property and keep the XML as another content property.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have not looked at any performance here, particularly in generating so many small documents.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would suggest something like our import/export would do the trick.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;For import we upload a file and then perform an action on it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;You could do the same for your xml content - and it could be automated as you put stuff in a given space….it could get moved and expanded into some other area. Please note that we have not set out to be an XML store with XQuery etc.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Categorisation could be done at the same time.&amp;nbsp; It would then be available as part of the lucene query language. If you split the document up you could categorise elements as well as the document. The category is queriable as part of PATH as categories are treated as vitual folders.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The indexer uses a field for each attribute, mainly to make searching direct against the index sensible using lucene. This and PATH/TYPE probably gives 80% of what you want to do in a search.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It would be interesting to know a bit more about your problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Cheers&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2005 07:53:51 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4647#M654</guid>
      <dc:creator>andy</dc:creator>
      <dc:date>2005-10-19T07:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4648#M655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Andy:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm interested in using Alfresco as an XML repository also. But we'd like to integrated a xml database into alfresco so as to process massive xml reository easily. The xml database already provides search functionality.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;All the xml content will store in another xml database.&amp;nbsp; When system do a search, it just search in both original lucene part and xml database and return the search results of two parts. Do you think there are any technical obstacles in this way? &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;thanks in advance&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;henry&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Nov 2005 20:22:08 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4648#M655</guid>
      <dc:creator>henry</dc:creator>
      <dc:date>2005-11-02T20:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4649#M656</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have written a new action that will set a bunch of properties on a node based on contents of the xml in the node contents.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What benefit do I get from having properties on a node without having any corresponding aspect to manage or use them?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is there a reason not to do that?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would like to be able to search based on these properties.&amp;nbsp; Apparently, the UI search does not alllow this, but presumably I can search on them using the API?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Also, it seems like the current available actions can't take advantage of properties for making decisions, even when they are part of installed aspects, specifically moving nodes or categorizing them.&amp;nbsp; Would it be appropriate/doable to make a custom action that did such a thing?&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is dealing with properties without aspects philosophically compatible with Alfresco?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Craig&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Nov 2005 21:32:48 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4649#M656</guid>
      <dc:creator>ctanis</dc:creator>
      <dc:date>2005-11-16T21:32:48Z</dc:date>
    </item>
    <item>
      <title>Re: Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4650#M657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Henry&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You will have to do quite a lot of work to get an XML repository linked in.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am assuming that the database is not compatible with hibernate, and you would not want hibernate in any case, so you will require a new NodeService to support the persistence of meta data. You will also need a ContentService against an XML database.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The indexing into lucene should work given the node service and content services above. However, I am not sure if you would do all the search against lucene or the xml database. You could certainly combine the two using the NodeRef for each node as the key. The search can be configured to do what you want and you could have a SearchService that just goes to the XML database(s) or that also includes lucene in some way.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You would have to think about how scores from each result set are used to produce an overall result set. There are ideas in lucene for this. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Regards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Andy&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Nov 2005 08:49:10 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4650#M657</guid>
      <dc:creator>andy</dc:creator>
      <dc:date>2005-11-17T08:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4651#M658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Henry&lt;BR /&gt;&lt;BR /&gt;You will have to do quite a lot of work to get an XML repository linked in.&lt;BR /&gt;&lt;BR /&gt;I am assuming that the database is not compatible with hibernate, and you would not want hibernate in any case, so you will require a new NodeService to support the persistence of meta data. You will also need a ContentService against an XML database.&lt;BR /&gt;&lt;BR /&gt;The indexing into lucene should work given the node service and content services above. However, I am not sure if you would do all the search against lucene or the xml database. You could certainly combine the two using the NodeRef for each node as the key. The search can be configured to do what you want and you could have a SearchService that just goes to the XML database(s) or that also includes lucene in some way.&lt;BR /&gt;&lt;BR /&gt;You would have to think about how scores from each result set are used to produce an overall result set. There are ideas in lucene for this. &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Andy&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;Hibernate is working on an XML based implementation.&amp;nbsp; I doubt what they are doing is directly related to what you are thinking of.&amp;nbsp; Anyway.. check the site you can download the beta code.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Nov 2005 13:52:01 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4651#M658</guid>
      <dc:creator>rdanner</dc:creator>
      <dc:date>2005-11-17T13:52:01Z</dc:date>
    </item>
    <item>
      <title>Re: Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4652#M659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Henry&lt;BR /&gt;&lt;BR /&gt;You will have to do quite a lot of work to get an XML repository linked in.&lt;BR /&gt;&lt;BR /&gt;I am assuming that the database is not compatible with hibernate, and you would not want hibernate in any case, so you will require a new NodeService to support the persistence of meta data. You will also need a ContentService against an XML database.&lt;BR /&gt;&lt;BR /&gt;The indexing into lucene should work given the node service and content services above. However, I am not sure if you would do all the search against lucene or the xml database. You could certainly combine the two using the NodeRef for each node as the key. The search can be configured to do what you want and you could have a SearchService that just goes to the XML database(s) or that also includes lucene in some way.&lt;BR /&gt;&lt;BR /&gt;You would have to think about how scores from each result set are used to produce an overall result set. There are ideas in lucene for this. &lt;BR /&gt;&lt;BR /&gt;Regards&lt;BR /&gt;&lt;BR /&gt;Andy&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The natural backend for this would be the Berkeley XML-DB, which has native XML support, extensible search matching at the key:value level, replication, support for 4GB files and 256TB databases.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It's GPL if you use it in a GPL product, otherwise you need to license it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Using a non-XML backend keeps exactly the same problems as the Documentum has: inability to do intelligent searches, inability to do version diffs, and inability to escape from microsoft once you have stored 100k ms-word documents.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Simply reinventing the wheel with a better user interface will only make low-end users happy. If you really want to sell this thing, you need to enable businesses to move away from microsoft.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Dec 2005 13:29:44 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4652#M659</guid>
      <dc:creator>podz</dc:creator>
      <dc:date>2005-12-18T13:29:44Z</dc:date>
    </item>
    <item>
      <title>Re: Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4653#M660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm also highly interested by such a solution!!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Have you achieved any result since then?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Aug 2006 13:35:14 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4653#M660</guid>
      <dc:creator>egabbud</dc:creator>
      <dc:date>2006-08-04T13:35:14Z</dc:date>
    </item>
    <item>
      <title>Re: Building an XML Repository</title>
      <link>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4654#M661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi, &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;doing a proper integration of an XML database in Alfresco would mean I.M.H.0. that you drop the separation of meta data and data. Meta data is just a bit more structured than the rest of the document, or might be scattered across the document. As long as it is addressable (by Xpath), it is meta data. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you don't do this, you can store XML documents, just as you store ASCII documents, no problem, you can search etc. but to call it an XML repository&amp;nbsp; :? .&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am currently checking the market for making a real XML repository of Alfresco (although it is not "built in" in Alfresco's architecture), any idea's and requirements you would see that have an impact in the market place would be very welcome and we can share our idea's of what the product should do.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 16 Sep 2006 23:36:05 GMT</pubDate>
      <guid>https://connect.hyland.com/t5/alfresco-archive/building-an-xml-repository/m-p/4654#M661</guid>
      <dc:creator>ronnyt</dc:creator>
      <dc:date>2006-09-16T23:36:05Z</dc:date>
    </item>
  </channel>
</rss>

