On 2/2/2015 11:57 AM, mathewvino wrote:
> I am using solrj API to make call to Solr Server with the data that I am
> looking for. Basically I am using
> solrj api as below to get the data. Everything is working as expected
>
> HttpSolrServer solr = new
> HttpSolrServer("http://server:8983/solr/co
You don't have to use SolrJ. It's just a web request to a url, so just
issue the request in Java and parse the JSON response.
http://stackoverflow.com/questions/7467568/parsing-json-from-url
SolrJ does make it simpler, however.
Jim
On 2/2/15, 12:57 PM, "mathewvino" wrote:
>Hi There,
>
>I am u