On 11/12/2013 6:13 AM, Christian Ramseyer wrote: > So I'm worried about something that uses these URL paths, say > > https://reverse-proxy/mapping-to-solr/searchui_client?qt=update& > commit=true&stream.body=<delete><query>*:*</query></delete>
Ensure that all handler names start with a slash character, so they are things like "/query", "/select", and so on. Make sure that handleSelect is set to false on your requestDispatcher config. This is how Solr 4.x examples are set up already. With that config, the "qt" parameter will not function and will be ignored -- you must use the request handler path as part of the URL -- /solr/corename/handler. Thanks, Shawn