Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to configure solrj server 3.4 with DefaultHttpClient (httpclient-4.x)?

Updated

Where can i download solrj client library based on httpclient-4.x?

i can't build it from solr svn trunk repository( they are still using httpclient-3.x)

share|improve this question
what do you mean by configure ? – Jayendra Oct 23 '11 at 12:20
just configure solr server to use already existent DefaultHttpClient instance. – Billy John Oct 24 '11 at 17:26

1 Answer

Using existing httpclient with Solr server e.g.

DefaultHttpClient hhtpclient = new DefaultHttpClient();
SolrServer solrSvr = net CommonsHttpSolrServer(url, hhtpclient);
SolrQuery query = new SolrQuery();
query.setQuery("*:*");
QueryResponse res = solrSvr.query(query);
SolrDocumentList results = res.getResults();
share|improve this answer
how can i inject existent DefaultHttpClient instance into org.apache.solr.client.solrj.SolrServer? – Billy John Oct 24 '11 at 17:52
you can pass the instance of http client to the solr server constructor, which would then be used. Updated answer with an example. – Jayendra Oct 24 '11 at 18:02
this is not possible because apache-solr-solrj-3.4.0.jar is based on httpclient 3 version, not 4. – Billy John Oct 24 '11 at 18:09
ohk ... yup ... 3.4 still uses 3. The trunk may have been upgraded. issues.apache.org/jira/browse/SOLR-2727. – Jayendra Oct 24 '11 at 18:17
ok, thanks. HttpProtocolParams.setContentCharset(params, "UTF-8"); this string too important for me:) – Billy John Oct 24 '11 at 18:27
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.