[EMAIL PROTECTED] wrote: ...
by mapping all the xml tags (name, street, postcode and city) it to the documents (address) fields directly. However is it also possible to map these?
<address> <name/> <street/> <area> <niceplace/> </area> </address>
Here we have a hierarchy in area (niceplace) which I want to preserve.
Suppose that the meaning of niceplace in an area is different from the niceplace
in the first xml structure (closer specified). I want to preserve this.
Is there a way to index with Lucene means? If not, are there any attempt of people doing this or does somebody have ideas how this could be solved?
I usually preprocess hierarchical xml documents via xslt to generate flat ones with coresponding element - field names before indexing.
<address> <name/> <street/> <niceplace_in_area/> or <niceplace area="1" /> </address>
Markus
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
