> My default Request Handler looks like > this: > > <requestHandler name="/search" > class="org.apache.solr.handler.component.SearchHandler" > default="true"> > > <lst name="defaults"> > > <str name="echoParams">all</str> > > > </lst> > > <arr name="components"> > > > <str>highlight</str> > > > > <str>collapse</str> > > <str>facet</str> > > </arr> > </requestHandler> > > > And I have uncommented the following line: > > <searchComponent name="highlight" > class="org.apache.solr.handler.component.HighlightComponent" > /> > > Still awaiting a reply.
I am sure that facet component cannot work without query component. Probably highlighting component relies on query component too. add query component as the first element in your components array. <arr name="components"> <str>query</str> ...............