Your builder parameter should be up to the collection, so only
"http://testserver-dtv:8984/solr/cpsearch";.
Then, on your Query object, you set
query.setRequestHandler("/select_cpsearch") as per
https://lucene.apache.org/solr/8_6_2/solr-solrj/org/apache/solr/client/solrj/SolrQuery.html#setRequestHa
Well, this is doesn’t look right at all:
/solr/cpsearch/select_cpsearch/select
It should just be:
/solr/cpsearch/select_cpsearch
Best,
Erick
> On Sep 18, 2020, at 3:18 PM, Steven White wrote:
>
> /solr/cpsearch/select_cpsearch/select
Hi Erick,
I'm on Solr 8.6.1. I did further debugging into this and just noticed that
my search is not working too now (this is after I changed the request
handler name from "select" to "select_cpsearch"). I have this very basic
test code as a test which I think revailes the issue:
try
{
This looks kind of confused. I’m assuming what you’re after is a way to get
to your select_cpsearch request handler to test if Solr is alive and calling
that
“ping”.
The ping request handler is just that, a separate request handler that you hit
by going to
http://sever:port/solr/admin/ping.
I