Problem accessing AdminUiServlet of Solr 4.10 in my Spring app

2017-07-14 Thread nbosecker
I've got a web project in a .war that is deployed on Tomcat. Inside that, I've got a Solr .war with an instance of Solr 4.10.4 running. Everything works fine as far as indexing/searching, but I can't access the Solr Admin UI page, and I've tried everything. I use Spring in the application, so I've

Re: copyField match, but how?

2017-03-03 Thread nbosecker
You're on the money, Chris. Thank you s much, I didn't even realize "body" wasn't stored. Of course that is the reason!! -- View this message in context: http://lucene.472066.n3.nabble.com/copyField-match-but-how-tp4323327p4323335.html Sent from the Solr - User mailing list archive at Nab

copyField match, but how?

2017-03-03 Thread nbosecker
I've got a confusing situation related to copyFields and search. In my schema.xml, I have these copyFields: and a defaultSearchField to the 'alltext' copyField: alltext In my index, this document with all these mapped fields - nothing to note except that the word "*simplex*" is *NOT

Re: Schemaless configuration using 4.10.2/API returning 404

2014-12-01 Thread nbosecker
Perfect - the web.xml configuration was exactly what was missing. Thanks so much! ;) -- View this message in context: http://lucene.472066.n3.nabble.com/Schemaless-configuration-using-4-10-2-API-returning-404-tp4167869p4171932.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multiple facet.query ignored

2014-11-21 Thread nbosecker
Good call - we are adding some ACL to the query going in, and using a Map to store the original query values, if there are multiple of the same key, it's only storing the last value. My bad! Thanks for the hint, I wasn't even considering that issue. Best, Nancy -- View this message in context

Multiple facet.query ignored

2014-11-20 Thread nbosecker
Hi, I'm having problems with queries that have multiple facet.query fields. Per the docs: [http://wiki.apache.org/solr/SimpleFacetParameters#Facet_Fields_and_Facet_Queries] http://localhost:8983/solr/select?q=video&rows=0&facet=true&facet.field=inStock&facet.query=price:[*+TO+500]&facet.query=pr

Re: Schemaless configuration using 4.10.2/API returning 404

2014-11-06 Thread nbosecker
I have some level of logging in Tomcat, and I can see that SolrDispatchFilter is being invoked: 2014-11-06 17:23:19,016 [catalina-exec-3] DEBUG SolrDispatchFilter - Closing out SolrRequest: {} But that really isn't terribly helpful. Is there more logging that I could invoke to get more

Re: Schemaless configuration using 4.10.2/API returning 404

2014-11-06 Thread nbosecker
Thanks for the reply! My Solr has 2 cores(collection1/collection2), I can access them via the Solr dashboard with no problem. https://myserver:9943/solr/#/collection1 https://myserver:9943/solr/#/collection2 I can also verify the solrconfig.xml for them contain the schemaless config: https://myse

Schemaless configuration using 4.10.2/API returning 404

2014-11-05 Thread nbosecker
Hi all, I'm working on updating legacy Solr to 4.10.2 to use schemaless configuration. As such, I have added this snippet to solrconfig.xml per the docs: true managed-schema I see that schema.xml is renamed to schema-xml.bak and managed-schema file is present on Solr restart.

Re: v4.0 upgrade to v4.1 with custom fq

2014-10-29 Thread nbosecker
No, I mean 4.1.0, not 4.10, although my ultimate goal is to get to 4.10. (And now 4.10.2 as you suggest!) I tried 4.0->4.10 first, ran into this issue, and decided to go one step at a time and try going from 4.0->4.1. -- View this message in context: http://lucene.472066.n3.nabble.com/v4-0-up

v4.0 upgrade to v4.1 with custom fq

2014-10-29 Thread nbosecker
I've inherited some code that filters requests for ACL by implementing a servlet Filter and wrapping the request to add parameters (user/groups) to the request as fq, and also handling getParameter()/getParameterMap() that Solr invokes to get those values from the request. Solrconfig.xml has place