Re: What's not a valid attribute data in Solr's schema.xml and solrconfig.xml

2015-06-12 Thread Steven White
Thanks Shawn. Steve On Fri, Jun 12, 2015 at 6:00 PM, Shawn Heisey wrote: > On 6/12/2015 3:30 PM, Steven White wrote: > > Thank you Erik and Shawn for your support. > > > > I'm using Solr's Schema API and Config API to manage and administer a > Solr > > deployment based on customer specific sett

Re: What's not a valid attribute data in Solr's schema.xml and solrconfig.xml

2015-06-12 Thread Shawn Heisey
On 6/12/2015 3:30 PM, Steven White wrote: > Thank you Erik and Shawn for your support. > > I'm using Solr's Schema API and Config API to manage and administer a Solr > deployment based on customer specific setting that my application will need > to do to a Solr deployment. A client application wil

Re: What's not a valid attribute data in Solr's schema.xml and solrconfig.xml

2015-06-12 Thread Steven White
Thank you Erik and Shawn for your support. I'm using Solr's Schema API and Config API to manage and administer a Solr deployment based on customer specific setting that my application will need to do to a Solr deployment. A client application will be using my APIs and as part of data validation,

Re: What's not a valid attribute data in Solr's schema.xml and solrconfig.xml

2015-06-12 Thread Erik Hatcher
Do note that AdminHandler*s* (plural) is "* A special Handler that registers all standard admin handlers”, so if you’re trying to do something tricky with admin handlers, Note that AdminHandlers is also deprecated and these admin handlers are implicitly registered with ImplicitPlugins these day

Re: What's not a valid attribute data in Solr's schema.xml and solrconfig.xml

2015-06-12 Thread Shawn Heisey
On 6/12/2015 1:02 PM, Steven White wrote: > You are right. If I use "solr.SearchHandler" it works, but if I > use "solr.admin.AdminHandlers" like so: > > > > > Solr reports this error: > > HTTP ERROR 500 > > Problem accessing /solr/db/config/requestHandler. Reason: > > {msg=SolrCore 'db'

Re: What's not a valid attribute data in Solr's schema.xml and solrconfig.xml

2015-06-12 Thread Steven White
You are right. If I use "solr.SearchHandler" it works, but if I use "solr.admin.AdminHandlers" like so: Solr reports this error: HTTP ERROR 500 Problem accessing /solr/db/config/requestHandler. Reason: {msg=SolrCore 'db' is not available due to init failure: The AdminHandler needs t

Re: What's not a valid attribute data in Solr's schema.xml and solrconfig.xml

2015-06-12 Thread Shawn Heisey
On 6/12/2015 12:24 PM, Steven White wrote: > I'm trying to sort out what's not valid in Solr's files. For example, the > following request-handler will cause Solr to fail to load (notice the > missing "/" from "987" in the 'name'): > > > > > But having a name with a space, such as "/ 987" or

What's not a valid attribute data in Solr's schema.xml and solrconfig.xml

2015-06-12 Thread Steven White
Hi, I'm trying to sort out what's not valid in Solr's files. For example, the following request-handler will cause Solr to fail to load (notice the missing "/" from "987" in the 'name'): But having a name with a space, such as "/ 987" or "/ 1 2 3 " works. This is one example, but my ques