ROME 1.0 Release
ROME 1.0 was released on March 12, 2009
What is New / Highlights
Normally each release of ROME includes a whole new set of Wiki pages with the corresponding version number. ROME 1.0 is reusing wikis from previous versions as there are not significant changes.
ROME can now optionally preserve WireFeed (ie, Atom/RSS specific) data and make it available via the SyndFeed data model. See PreservingWireFeeds for further details
Complete details in the change log
Downloads
Dependencies
J2SE 1.4+
rss :http://onlinelibrary.wiley.com/rss/journal/10.1002/%28ISSN%291521-4095 (rss 1.0 parser==null case Exception:Invalidate Xml)
I come from china chengdu clas,please change code:
com.sun.syndication.io.impl.RSS10Parser{
public boolean isMyType(Document document) {
boolean ok = false;
Element rssRoot = document.getRootElement();
Namespace defaultNS = rssRoot.getNamespace();
List additionalNSs = rssRoot.getAdditionalNamespaces();
ok = defaultNS!=null && defaultNS.equals(getRDFNamespace());
if (ok) {
if (additionalNSs==null) {
ok = false;
} else {
if(additionalNSs!=null&&additionalNSs.size()>0){//add this if code
ok = false;
for (int i=0;!ok && i<additionalNSs.size();i++) {
ok = getRSSNamespace().equals(additionalNSs.get(i));
}
}//add end if
}
return ok;
}
}