Return-Path: X-Original-To: apmail-lucene-solr-user-archive@minotaur.apache.org Delivered-To: apmail-lucene-solr-user-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id C5AC017465 for ; Mon, 2 Feb 2015 19:00:09 +0000 (UTC) Received: (qmail 74580 invoked by uid 500); 2 Feb 2015 19:00:01 -0000 Delivered-To: apmail-lucene-solr-user-archive@lucene.apache.org Received: (qmail 74519 invoked by uid 500); 2 Feb 2015 19:00:01 -0000 Mailing-List: contact solr-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: solr-user@lucene.apache.org Delivered-To: mailing list solr-user@lucene.apache.org Delivered-To: moderator for solr-user@lucene.apache.org Received: (qmail 71422 invoked by uid 99); 2 Feb 2015 18:58:56 -0000 X-ASF-Spam-Status: No, hits=3.5 required=5.0 tests=FORGED_HOTMAIL_RCVD2,SPF_SOFTFAIL,URI_HEX X-Spam-Check-By: apache.org Received-SPF: softfail (nike.apache.org: transitioning domain of vinojmathew@hotmail.com does not designate 162.253.133.43 as permitted sender) Date: Mon, 2 Feb 2015 11:57:58 -0700 (MST) From: mathewvino To: solr-user@lucene.apache.org Message-ID: <1422903478827-4183536.post@n3.nabble.com> Subject: SOLR retrieve data using URL MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Hi There, 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/collection1"); SolrQuery query = new SolrQuery("*:*"); query.setFacet(true).addFacetField("PLS_SURVY_SURVY_STATUS_MAP") Is there any API I can use the complete URL to get the data like below HttpSolrServer solr = new HttpSolrServer("http://server:8983/solr/collection1/select?q=*%3A*&wt=json&indent=true&facet=true&facet.field=PLS_SURVY_SURVY_LANG_CHOICE_MAP") I would like to pass the complete url to get the data insted of using solrj query api. Thanks -- View this message in context: http://lucene.472066.n3.nabble.com/SOLR-retrieve-data-using-URL-tp4183536.html Sent from the Solr - User mailing list archive at Nabble.com.