After configuring solr4.7.2 with tomcat 7, got the error in solrAdmin page stating
SolrCore Initialization Failures
fran92:org.apache.solr.common.SolrException:org.apache.solr.common.SolrException: XML parser doesn't support XInclude option
My solr.xml file contains one core
<?xml version="1.0" encoding="UTF-8" ?>
<solr persistent="true">
<cores host="${host:}" adminPath="/admin/cores" hostContext="${hostContext:solr}">
<core config="solrconfig.xml" name="fran92" instanceDir="generic" schema="schema.xml" dataDir="data"/>
</cores>
</solr>
and solrConfig.xml does not include any xInclude tag to include external xml.
what to do next to remove this error. ???