Re: need help to integrate SolrJ with my web application.

2012-04-18 Thread Marcelo Carvalho Fernandes
Hi Vijaya, Why not just making standard http calls to Solr as it was a RESTful Service? Just use a HTTP/REST Client on Spring, ask solr to return Json responses and get rid of all those war dependencies of SolrJ --- Marcelo On Monday, April 16, 2012, Ben McCarthy ben.mccar...@tradermedia.co.uk

Re: need help to integrate SolrJ with my web application.

2012-04-16 Thread Rafał Kuć
Hello! What is the context your web application is available at ? Because I see you try to connect to: String url = http://localhost:8080/solr;; Which may be different in your case. -- Regards, Rafał Kuć Sematext :: http://sematext.com/ :: Solr - Lucene - Nutch Hi All, I am trying to

RE: need help to integrate SolrJ with my web application.

2012-04-16 Thread Ben McCarthy
Hello, When I have seen this it usually means the SOLR you are trying to connect to is not available. Do you have it installed on: http://localhost:8080/solr Try opening that address in your browser. If your running the example solr using the embedded Jetty you wont be on 8080 :D Hope