below is the code for feed reader of primefaces which is throwing an error which says
java.lang.NoClassDefFoundError: com/sun/syndication/io/XmlReader
<h:body>
<p:feedReader size="20" value="http://rss.news.yahoo.com/rss/sports" var="feed">
<h:outputText value="#{feed.title}" style="font-weight: bold"/>
<br />
<h:outputText value="#{feed.description.value}" escape="false"/>
<p:separator />
i searched for the same n found that some ROME library has to be included in the classpath. i downloaded the rome jar file n included it in my project but still it gives the same error what should i do?