I have created a solr multi core and every thing is working as expected. But when I put SolrPhpClient and tried to ping the server(jetty) I am getting error that it's not running where as it is running.
I even tried the below given url:
http://localhost:8983/solr/core1/admin/ping then I get a 500 error.
I even tried to make changes in solrconfig.xml
<requestHandler name="/core1/admin/ping" class="PingRequestHandler">
<lst name="defaults">
<str name="qt">standard</str>
<str name="q">solrpingquery</str>
<str name="echoParams">all</str>
</lst>
</requestHandler>
but even this didn't work.
Any ideas guys how to make SolrPhpClient work with multicore.
Any help will be appreciated.