Report Engine finds an unsupported element in the Report Design XML file
<p>I'm trying to generate a pdf report using the BIRT Report Engine APIs in a Java program. When the program gets to the line...</p>
<p> </p>
<p> report = engine.openReportDesign(reportFilepath);</p>
<p> </p>
<p>... an error occurs and the following entries are written to the log file...</p>
<p> </p>
<p>Oct 28, 2014 9:14:17 AM org.eclipse.birt.report.model.parser.ModuleReader readModule<br>
SEVERE: Line Number:5 Error Code:Error.XMLParserException.UNKNOWN_TAG Message:The XML file contains an unsupported element.<br>
Oct 28, 2014 9:14:17 AM org.eclipse.birt.report.model.parser.ModuleReader readModule<br>
SEVERE: Line Number:1781 Error Code:Error.XMLParserException.UNKNOWN_TAG Message:The XML file contains an unsupported element.<br>
Oct 28, 2014 9:14:17 AM org.eclipse.birt.report.model.parser.ModuleReader readModule<br>
SEVERE: Line Number:1785 Error Code:Error.XMLParserException.UNKNOWN_TAG Message:The XML file contains an unsupported element.<br>
Oct 28, 2014 9:14:17 AM org.eclipse.birt.report.model.parser.ModuleReader readModule<br>
SEVERE: Line Number:1791 Error Code:Error.XMLParserException.UNKNOWN_TAG Message:The XML file contains an unsupported element.<br>
Oct 28, 2014 9:14:17 AM org.eclipse.birt.report.model.parser.ModuleReader readModule<br>
SEVERE: Line Number:1915 Error Code:Error.XMLParserException.UNKNOWN_TAG Message:The XML file contains an unsupported element.<br>
Oct 28, 2014 9:14:17 AM org.eclipse.birt.report.model.parser.ModuleReader readModule<br>
SEVERE: Line Number:1995 Error Code:Error.XMLParserException.UNKNOWN_TAG Message:The XML file contains an unsupported element.<br>
Oct 28, 2014 9:14:17 AM org.eclipse.birt.report.model.parser.ModuleReader readModule<br>
SEVERE: Line Number:2500 Error Code:Error.XMLParserException.UNKNOWN_TAG Message:The XML file contains an unsupported element.<br>
Oct 28, 2014 9:14:17 AM org.eclipse.birt.report.engine.api.impl.ReportEngineHelper getReportDesignHandle<br>
SEVERE: invalid design file file:/C:/BIRTWorkspace/AgentReportsBurst/AgentLoss.rptdesign</p>
<p> </p>
<p>The line numbers in the log file refer to the following lines in the report design XML file...</p>
<p> </p>
<p>line 5 <external-datamarts></p>
<p>line 1781 <data-mart-data-source name=<i>"Loss"</i> id=<i>"1307"</i>></p>
<p>line 1785 <data-mart-data-source name=<i>"Common Data"</i> id=<i>"1310"</i>></p>
<p>line 1791 <data-mart-data-set name=<i>"Agent by MCO"</i> id=<i>"737"</i>></p>
<p>line 1915 <data-mart-data-set name=<i>"Premium Year Month"</i> id=<i>"742"</i>></p>
<p>line 1995 <data-mart-data-set name=<i>"Loss"</i> id=<i>"755"</i>></p>
<p>line 2500 <data-mart-data-set name=<i>"Group List"</i> id=<i>"1301"</i>></p>
<p> </p>
<p>The XML tags in the report design file were created by the BIRT Designer. Is there a way I can get the report engine API to recognize these tags?</p>
<p> </p>
<p>See attached java program and report design...</p>
<p>