Re: params field on response

2011-10-13 Thread penela
As expected, I've found the answer five minutes after posting ... explicit Anyway, is there somewhere in the wiki where all the available params of the SearchHandler are explained? Thanks! -- View this message in context: http://lucene.472066.n3.nabble.com/params-field-on-response-tp3418259p34

params field on response

2011-10-13 Thread penela
Hi, I've just moved from using default handler on /select to a particular requestHandler defined on solrconfig.xml (the main goal is to add default parameters, thus simplifying requests). My search handler looks like this: title,author,link,description,timestamp,url,image

Saxon + classpath issues

2011-09-22 Thread penela
Hi, I'm trying to make my XsltResponseWriter to use Saxon 9.1 as its default transformer (working with Solr 3.3 on Tomcat 7). After reading http://wiki.apache.org/solr/XsltResponseWriter I've added -Djavax.xml.transform.TransformerFactory=net.sf.saxon.TransformerFactoryImpl to Tomcat launch opt

Accessing a doc field while working at entity level

2011-09-05 Thread penela
Hi! This might probably be a stupid question, but I can't find clear info on how to do it (sorry if it is too obvious). I have a the following document configuration (only key elements shown) with two entities, one embedded into the other:

XPathProcessor foreach not working properly inside another entity

2011-08-09 Thread penela
Hi! What I'm trying to do is get RSS urls from a MySQL DB of my own, an use them as the url endpoint for indexing the feed articles (mixing db and rss core DIH examples to some extent). My data-config looks like this:

Re: XPathProcessor foreach not working properly inside another entity

2011-08-09 Thread penela
After a bit of better targeted search on the forum, I''ve found this solution by Noble Paull: http://lucene.472066.n3.nabble.com/DIH-Http-input-bug-problem-with-two-level-RSS-walker-tp491046p491047.html Using rootEntity="false" in the outer entity seems to make it work as expected. Thanks! -- Vi