How to use DocumentAnalysisRequestHandler in java

2015-08-20 Thread Jean-Pierre Lauris
Hi, I'm trying to obtain indexed tokens from a document id, in order to see what has been indexed exactly. It seems that DocumentAnalysisRequestHandler does that, but I couldn't figure out how to use it in java. The doc says I must provide a contentstream but the available init() method only

Protect admin pages with jetty

2013-12-01 Thread Jean-Pierre Lauris
Hi, I'm using solr 4.4 with jetty and I'm trying to password-protect the admin pages. I've read many posts from this list, as well as the main solr security doc : http://wiki.apache.org/solr/SolrSecurity#Jetty_realm_example and added this to my web.xml security-constraint

Re: Protect admin pages with jetty

2013-12-01 Thread Jean-Pierre Lauris
-addresses or -ranges .. or you make the jetty instance listen to localhost only and open an ssh tunnel, if needed. HTH Stefan On Sunday, December 1, 2013 at 12:23 PM, Jean-Pierre Lauris wrote: Hi, I'm using solr 4.4 with jetty and I'm trying to password-protect the admin pages

How to disable debug in Solrj

2013-07-02 Thread Jean-Pierre Lauris
Hi, I'm running the jetty start.jar and I'm indexing documents with Solrj's HttpSolrServer object : SolrServer server = new HttpSolrServer(http://HOST:8983/solr/;); server.add( docs ); server.commit(); This leads to TONS of debug information (i.e. logs at level DEBUG), on both server and client