Re: XSLT transform before update?

2008-04-22 Thread Noble Paul നോബിള്‍ नोब्ळ्
any patches to the version that we will deploy, but if I do > >> go > >> >> > down the route of the XSLT transform patch, if I end up having to > >> back > >> >> > it out the amount of work that it would be for me to do the > >> transform >

Re: XSLT transform before update?

2008-04-21 Thread David Smiley @MITRE.org
hat it would be for me to do the >> transform >> >> at >> >> > the XML source would be negligible, where it would be quite a bit >> of >> >> > work ahead of me to go from using the DataImportHandler to not >> using it >>

Re: XSLT transform before update?

2008-04-21 Thread Noble Paul നോബിള്‍ नोब्ळ्
ent teams of people that control the XML > >> source > >> > and solr, so it would require a bit more office coordination to do it > >> on > >> > the backend. > >> > > >> > The data is a filemaker XML export (DTD fmresul

Re: XSLT transform before update?

2008-04-20 Thread David Smiley @MITRE.org
t; > >> > The data is a filemaker XML export (DTD fmresultset) and it looks >> > roughly like this: >> > >> > >> > 125 >> > Ford Foundation >> > ... >> > >> > >> >

Re: XSLT transform before update?

2008-04-18 Thread Shalin Shekhar Mangar
gt; > > the backend. > > > > > > The data is a filemaker XML export (DTD fmresultset) and it looks > > > roughly like this: > > > > > > > > > 125 > > > Ford Foundation > > > ... >

Re: XSLT transform before update?

2008-04-18 Thread Shalin Shekhar Mangar
ne Doe > > > > > > > > > > I'm taking the product of the resultset and the relatedset, using both > > IDs concatenated as a unique identifier, like so: > > > > > > 125Y5-A > > Ford Foundation > > John Smith > > > > > > 125Y5-B > > Ford Foundation > > Jane Doe > > > > > > I can do the transform pretty simply with XSLT. I suppose it is > > possible to get the DataImportHandler to do this, but I'm not yet > > convinced that it's easier. > > > > Daniel > > > > > > -- > View this message in context: > http://www.nabble.com/XSLT-transform-before-update--tp16738227p16764009.html > Sent from the Solr - User mailing list archive at Nabble.com. > > -- Regards, Shalin Shekhar Mangar.

Re: XSLT transform before update?

2008-04-18 Thread David Smiley @MITRE.org
> > > > I'm taking the product of the resultset and the relatedset, using both > IDs concatenated as a unique identifier, like so: > > > 125Y5-A > Ford Foundation > John Smith > > > 125Y5-B > Ford Foundation > Jane

Re: XSLT transform before update?

2008-04-17 Thread Daniel Papasian
Shalin Shekhar Mangar wrote: Hi Daniel, Maybe if you can give us a sample of how your XML looks like, we can suggest how to use SOLR-469 (Data Import Handler) to index it. Most of the use-cases we have yet encountered are solvable using the XPathEntityProcessor in DataImportHandler without using

Re: XSLT transform before update?

2008-04-16 Thread Shalin Shekhar Mangar
Hi Daniel, Maybe if you can give us a sample of how your XML looks like, we can suggest how to use SOLR-469 (Data Import Handler) to index it. Most of the use-cases we have yet encountered are solvable using the XPathEntityProcessor in DataImportHandler without using XSLT, for details look at http

Re: XSLT transform before update?

2008-04-16 Thread Chris Hostetter
: Is there a way to implement a custom request handler or similar to get : solr to apply an XSLT transform to the content stream before it attempts : to parse it? If not possible OOTB, where would be the right place to : add said functionality? take a look at SOLR-285 and SOLR-370 ... a RequestH

XSLT transform before update?

2008-04-16 Thread Daniel Papasian
Hey everyone, I'm experimenting with updating solr from a remote XML source, using an XSLT transform to get it into the solr XML syntax (and yes, I've looked into SOLR-469, but disregarded it as I need to do quite a bit using XSLT to get it to what I can index) to let me maintain an index. I'm lo