Re: Configuration steps to create dynamic core

2012-05-09 Thread pprabhcisco123
Hi I tried to create cores dynamically using the below code, CoreAdminResponse statusResponse = CoreAdminRequest.getStatus(indexName, solr); coreExists = statusResponse.getCoreStatus(indexName).size() > 0; System.out.println("got the cor

Re: Configuration steps to create dynamic core

2012-05-09 Thread pprabhcisco123
Hi Dave, I tried to create core programmatically as below. But getting following error. CoreAdminResponse statusResponse = CoreAdminRequest.getStatus(indexName, solr); coreExists = statusResponse.getCoreStatus(indexName).size() > 0;

Re: Configuration steps to create dynamic core

2012-05-09 Thread Dave Stuart
This pages gives you everything you need http://wiki.apache.org/solr/CoreAdmin#CREATE Regards, Dave On 9 May 2012, at 08:32, pprabhcisco123 wrote: > Hi, > > > I am trying to create core dynamically. what are the configuration > steps that needs to be followed to do the same. Please l