Re: Disabling XmlQParserPlugin through solrconfig

2017-10-12 Thread Manikandan Sivanesan
Thanks a lot. This is the suggestion we are proceeding forward with. On Thu, Oct 12, 2017 at 7:59 PM, Trey Grainger wrote: > You can also just "replace" the registered xml query parser with another > parser. I imagine you're doing this for security reasons, which means you > just want the actual

Re: Disabling XmlQParserPlugin through solrconfig

2017-10-12 Thread Trey Grainger
You can also just "replace" the registered xml query parser with another parser. I imagine you're doing this for security reasons, which means you just want the actual xml query parser to not be executable through a query. Try adding the following line to your solrconfig.xml: This way, the xm

Re: Disabling XmlQParserPlugin through solrconfig

2017-10-12 Thread Shawn Heisey
On 10/12/2017 3:18 PM, Manikandan Sivanesan wrote: I'm looking for a way to disable the query parser XmlQParserPlugin (org.apache.solr.search.XmlQParserPlugin) through solrconfig.xml . Following the instructions mentioned here

Re: Disabling XmlQParserPlugin through solrconfig

2017-10-12 Thread Manikandan Sivanesan
Sorry noticed the typo. Am providing the corrected version On Thu, Oct 12, 2017 at 5:18 PM, Manikandan Sivanesan wrote: > I'm looking for a way to disable the query parser XmlQParserPlugin > (org.apache.solr.search.XmlQParserPlugin) through solrconfig.xml . > Following the instructions ment

Disabling XmlQParserPlugin through solrconfig

2017-10-12 Thread Manikandan Sivanesan
I'm looking for a way to disable the query parser XmlQParserPlugin (org.apache.solr.search.XmlQParserPlugin) through solrconfig.xml . Following the instructions mentioned here to disable a query parser. This is the part that