This is really just parsing the XML using any of several parsers and
putting the results into a SolrInputDocument (assuming a SolrJ
client).
Alternatively, you could perhaps do some XSLT transformations, but I'm
not great on the ins and outs of XSLT...
Best
Erick
On Sun, May 19, 2013 at 11:03 AM
Hi all,
I´m reading XML-Files into Solr. I have the following structure:
AA
123456789
BB
987654321
CC
147258369
How can I read the name with value. The Solr result should look like this.
123456789
987654321
147258369
Any Idea?
Than