ROME is a set of RSS and Atom Utilities for Java that is open source under the Apache 2.0 license. ROME makes it easy to work in Java with most syndication formats.
0
votes
0answers
18 views
Accessing enclosure content with Rome
I am trying to access the .mp3 link in a podcast enclosure using Rome1.0 and Java. The enclosure contains the type, url and length. I can't find any documentation for it. The wiki at Java.net has ...
0
votes
1answer
45 views
Getting XML String value of SyndEntry with ROME
I'm currently working on a project which implies XML feed parsing (Atom 2005) and I'm using Rome to do this.
I have some SyndEntry objects, and I need to convert them to XML as standalone Entries ...
0
votes
0answers
29 views
Getting Rome via Maven
I'm working with Maven and I'm looking to start using Rome for a project.
When I look for "rome" in my Eclipse's m2 instance, I get a few results:
net.java.dev.rome:rome:1.0.0 (2010-04-17)
...
0
votes
1answer
69 views
Converting SyndFeed to SyndEntry with Rome
I'm currently working on a project which implies XML feed parsing (Atom 2005) and I'm using Rome to do this.
I have currently two kind of XML structure to parse.
The first type :
<?xml ...
0
votes
1answer
51 views
How to change Java ROME parser default socket timeout?
I am parsing a fair amount of RSS feeds in cascade using Java ROME as my XML parser.
Sometimes one of the RSS feeds might be unreachable because of network issues, which results in a Socket timeout ...
0
votes
0answers
54 views
How To Remove <img>,<br>and <b> Tag While Reading RSS Feed Using ROME?
hi i am trying to read data from weather feed my code is,
SyndFeedInput input = new SyndFeedInput();
SyndFeed feed = input.build(new XmlReader(feedUrl));
System.out.println("Examining rss ...
0
votes
1answer
75 views
Rome RSS does not parse enclosures
I try to create a rss Feed with Rome which has enclosures (for a podcast). So I create an entry with
SyndEntry entry = new SyndEntryImpl();
After I set the basic information of the entry (like ...
0
votes
1answer
162 views
Unable to read image URL from feed using Rome API
I am using ROME parser to parse my RSS/Atom feeds. Now the problem is that it doesn't give image URL of the news feed/entry. Part of the problem is also because feeds are not consistent and they put ...
0
votes
3answers
442 views
java.lang.ClassNotFoundException: org.jdom.JDOMException
I am getting the following error message when trying to load an rss page:
Feb 16, 2013 9:08:44 PM org.apache.catalina.core.StandardWrapperValve invoke
SEVERE: Servlet.service() for servlet ...
0
votes
0answers
87 views
Java Rome Atom Feed with Paging/Archiving (rfc5005)
I am trying to get a Java Rome Atom Feed running with paging/archiving as described in RFC 5005 http://www.ietf.org/rfc/rfc5005.txt . Basically the feed needs a namespace e.g.
<feed ...
0
votes
1answer
86 views
Why won't my IDE recognize this type that I believe I have correctly imported in a JSP?
This is driving me mad, and I've already sought previous answers here and here, to no avail so far.
I am trying to follow this tutorial, which uses the Rome library for RSS feeds to output feed ...
3
votes
0answers
69 views
Simple way to override ROME's DateParser?
An RSS 2.0 feed I need to process returns date entries which ROME's DateParser cannot parse, delivering null for all dates. More than that, no suitable SimpleDateFormat pattern exists (which could ...
0
votes
0answers
48 views
Using rome with abdera
im working on a project which is currently using both rome and abdera. The two sections of code just dont need to interact with eachother, until now and im having some difficulty trying to use the ...
0
votes
0answers
128 views
Java parse RSS using Rome
I am working on a RSS reader, some rss feeds such as this one http://www.masteringemacs.org/feed/ can not be parsed with rome resulting,
SAXParseException Content is not allowed in prolog. ...
0
votes
0answers
196 views
Download all entries in RSS feed using ROME
I'm using ROME from Scala to download RSS feeds, but it's only grabbing a subset of the entries. For example, Google Reader finds at least 61 entries for Bing Images, but ROME only finds 10 entries. ...
1
vote
1answer
279 views
RSS Reader and parser using java
I need to implement the RSS reader kind of using Java.
I have designed the Java class which reads the RSS feed XML URL and get the contents and store it in Java class.
Whenever there is an update ...
0
votes
1answer
316 views
Rome XmlReader not reading https feed
I am trying to read https://d3ca01230439ce08d4aab0c61810af23:bla@mycon.mycompany.com/recordings.atom
using Rome but its giving me error
INFO: Illegal access: this web application instance has ...
0
votes
0answers
201 views
Google News RSS - Invalid XML on Android (Works fine without Android) [closed]
I am trying to parse RSS News feed from google. I got some sample code from here http://viralpatel.net/blogs/reading-parsing-rss-feed-using-rome/ and it worked fine in my sample java app but it does ...
0
votes
0answers
85 views
How can i get all atom/rss entries with all custom tags?
using rome api I have
Iterator entryIter = feed.getEntries().iterator();
while (entryIter.hasNext()) {
SyndEntry entry = (SyndEntry) entryIter.next();
and get all standart ...
0
votes
0answers
99 views
How to handle charset conversion using rome?
Hello Friends i am using rome to fetch rss feed information & saving it to database which has utf-8 format but for some feeds i am not able to insert data into database & getting this error ...
1
vote
1answer
274 views
ROME RSS: How to get RSS icon
I am trying to write a small RSS Reader. I use ROME in order to get the RSS feeds. This works fine so far. However, I am not able to obtain the RSS icon of the individual feeds. Is there a way to get ...
0
votes
1answer
400 views
JDOM exception Spring MVC
I'm trying to create RSS feeds for my web site and I'm using the rome 1.0 library. When I run my project I get the following:
org.springframework.web.util.NestedServletException: Handler processing ...
0
votes
0answers
90 views
How does ROME know which module generator to use
I have some custom RSS modules for passing data from a web service to a user interface.
I am using Spring 3 AbstractRssFeedView to generate the feeds by adding my custom modules into the Items.
I ...
0
votes
0answers
67 views
Problems with ROME-1.0
Has anyone had problems with ROME-1.0? Maybe it's due to a recent reformatting of my harddrive, but this program (very simple) will no longer run for me.
URL url = new ...
0
votes
0answers
197 views
ROME RSS FeedFetcher
I understood how to fetch Feeds along with Caching.
feedInfoCache = HashMapFeedInfoCache.getInstance()
feedFetcher = new HttpURLFeedFetcher(feedInfoCache)
SyndFeed feed = ...
1
vote
1answer
1k views
Reading RSS feeds in java
I am trying to read RSS feed in java I am using ROME to read the feed, but getting an error
cannot access org.jdom.Document class file for org.jdom.Document not found
SyndFeed feed = new ...
1
vote
1answer
194 views
How to read “gd:image” element from an Atom feed using ROME
I'm using ROME library to parse Blogger Atom feed and I need to read an URL of the author thumbnail. How can I do this? The wire feed does not contain this element.
<feed ...
1
vote
1answer
560 views
Putting content:encoded in RSS feed using ROME
I'm trying to put some HTML content inside <content:encoded> tags using ROME and its modules. So far I've succesfully put mediaRSS and geoRSS in the feed, but my content is not showing up.
...
2
votes
1answer
202 views
Is the ROME RSS parser result list in feed-published order?
i did search for information on this, but unfortunately couldnt find one .. Can anyone help with this ?
Example :
URL feed = new URL(feedUrl);
SyndFeedInput input = new ...
1
vote
1answer
258 views
How to find the blog feed URL from the blog site programmatically
We use the following code to read a RSS | ATOM feed, is there a way to find the RSS | ATOM URL of a blog feed give the blog site (e.g. for http://my.typepad.com or http://occupylosangeles.org/). This ...
0
votes
2answers
72 views
How to avoid rome exception
I'm doing project using struts1.
I'm fetching RSS feeds using ROME but it fails for two conditions:
When my firewall forbidden rss url (response code 403)
When I insert incorrect rss url
To avoid ...
0
votes
1answer
158 views
How to get Comments of rss feeds by using rome in java
I am using rome 0.9 for fetching feeds .But i am not able to get the comments of that blog.
InputStream is = new URL(urlstring).openConnection().getInputStream();
SyndFeedInput input = new ...
0
votes
1answer
813 views
How to use ROME for RSS
I am using the code from Rome's tutorials page http://wiki.java.net/twiki/bin/view/Javawsxml/Rome05TutorialFeedReader .
When I try to compile, it says class FeedReader is public, should be ...
1
vote
1answer
586 views
How to convert rome date format “Sun Jan 08 02:25:00 IST 2012” date to sql date
I am using rome 0.9 for getting rss feeds.but from that getting blog post's date
as in the format "Sun Jan 08 02:25:00 IST 2012" .
I am unable to convert this date format to the sql date ...
1
vote
3answers
606 views
While parsing RSS feed through Rome getting Content is not allowed in prolog
Using Rome API to parse the RSS feeds I am getting this error :
com.sun.syndication.io.ParsingFeedException: Invalid XML
at com.sun.syndication.io.WireFeedInput.build(WireFeedInput.java:210)
...
0
votes
0answers
291 views
Sun Syndication API throwing error while trying to parse specific RSS feed
Using the SUN syndication API ROME,
I am trying to parse the following RSS feed:
...
0
votes
1answer
211 views
ROME 0.8 Parse Exception
I am trying to parse RSS feeds using ROME v0.8 (j2sdk1.4.2_07) but no matter which feed I use it always says the same error.
com.sun.syndication.io.ParsingFeedException: Invalid XML: Error on
...
2
votes
1answer
448 views
RSS feed parsing through ROME getting null as source
I am using com.sun.syndication apis for parsing the RSS feeds which i need to eventually use in my application. The problem that i am facing is that for some of the RSS e.g. like
...
0
votes
2answers
556 views
How to configure java rome fetcher for use with a proxy and authentication
I'm trying to use java rome-fetcher to acquire rss feeds for processing. Everything works fine when I have direct internet access.
However, I need to be able to run my application behind a proxy ...
3
votes
2answers
202 views
How do you go about getting the contents portion of an RSS feed with Rome and Scala?
I've been toying around with Rome 1.0 today with scala and while i've been able to get the title, description, etc tabs it says that getContent() doesn't exist.
val url = ...
1
vote
1answer
117 views
RSS reader Rome not able to handle UTC timestamp
publisher date timestamp is given in UTC for http://feeds.finance.yahoo.com/rss/2.0/category-stocks
Rome is not able to handle the UTC keyword and its failing here.
Is there any workaround
0
votes
0answers
393 views
Sun syndication (Rome) exception
I'm developing a Confluence plugin and using the com.sun.syndication package to parse RSS. I got an exception. Has anybody met with similar?
Caused by: java.lang.ClassCastException: ...
1
vote
2answers
478 views
What is the definitive (android compatible) RSS/Atom processing library?
I've been told by long-time Java developers that Apache's Rome module is the definitive library for reading & generating RSS & Atom feeds.
I've had a look at the library - it does not seem to ...
3
votes
1answer
919 views
Using ROME to extract feed contents?
How do I get the contents as a String using ROME in Java for some feed.
At the moment this is what I got
String feedURL = “...”;
SyndFeedInput input = new SyndFeedInput();
SyndFeed feed = ...
3
votes
1answer
727 views
We can't download the rss lib `Rome` for Java now?
I'm looking for a java rss lib, and I found rome. But there is nothing can be downloaded now. What happened to this project? Where can I find it?
Or is there any other good rss or atom libraries?
11
votes
2answers
8k views
Where can I download ROME rss library jar?
It seems rome downloads no longer exists here (http://java.net/projects/rome/downloads). Where can I download the jar then? is it being discontinued?
Thanks,
David
2
votes
1answer
2k views
Problem with charset and rome (rss/atom feeds)
I'm trying to create a feed aggregator using rome (1.0). Everything is working, but I'm facing problems with feed's charset. I'm developing it using java 1.6 over a mac os x (netbeans 6.9.1).
I'm ...
4
votes
2answers
3k views
Java - Rome rss reader?
I am trying to read rss.
I copied the jar file in to my libs folder, and I added the jar file to my eclipse project as a library.
In order and export i checked my jar file.
Now I am trying to use ...
1
vote
2answers
519 views
Periodically updating rss feed in rome
How would I go about fetching stories with rome.
i.e. I have the feed how to get an updated version of the feed.
I am currently calling:
URL url = new ...
0
votes
1answer
231 views
Using feed:// in rome
So I am using rome and accessing a feed with the following url
URL url = new URL("feed://rss.cnn.com/rss/cnn_topstories.rss");
reader = new XmlReader(url);
(unrelated code edited out)
however, I ...
