Questions tagged [rome]

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.

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.

ROME includes a set of parsers and generators for the various flavors of syndication feeds, as well as converters to convert from one format to another. The parsers can give you back Java objects that are either specific for the format you want to work with, or a generic normalized SyndFeed class that lets you work on with the data without bothering about the incoming or outgoing feed type.

141 questions
0
votes
1 answer

Liferay RSSUtil + rome.jar

I would like use RSSUtil to read an RSS feed but i'm facing a problem with the class loader... The exception thrown is : com.sun.syndication.feed.synd.SyndFeedImpl cannot be cast to com.sun.syndication.feed.synd.SyndFeedImpl My Code is : …
Denis Cucchietti
  • 201
  • 6
  • 16
0
votes
1 answer

Not able to find source files for itunes-0.4 java lib

above is extension to rome library( to parse RSS/atom feeds) for parsing itunes extensions. Can some one tell me where I can find source for that. Jar is available at http://www.java2s.com/Code/Jar/i/Downloaditunes04jar.htm. Any help here would be…
Sandy
  • 2,253
  • 6
  • 24
  • 33
0
votes
2 answers

Size of RSS feed

I'm using ROME to generate a feed from data in my database. In all the samples I found, the Servlet extracts all the data from the database, and sends it as a feed. Now, if the database contains thousands of entries, how many entries should I…
Majid Laissi
  • 19,188
  • 19
  • 68
  • 105
0
votes
1 answer

Getting and running Rome

A few related questions: What's the version number for the latest version for Rome? Where can I download the JAR for the latest version? Where does maven get its JAR for Rome? finally, Rome is, objectively, numerically, the most frequently use Java…
Thufir
  • 8,216
  • 28
  • 125
  • 273
0
votes
1 answer

integrating ROME library in android studio (+ is android studio tripping?)

i am working with this guide with android studio, i added the following lines to my build.gradle: compile 'org.jdom:jdom:1.1' compile 'rome:rome:1.0' and it gradle compiled it ok, but when i tried to run "debug" i got the following…
user1333057
  • 607
  • 1
  • 8
  • 19
0
votes
1 answer

How to read rssFeed xml using rome in gwt

Using rome I created the rssFeed xml and now I want to read that xml so that user can view and user can view rss feed in google etc.
Rupeshit
  • 41
  • 4
0
votes
1 answer

Rome RSS - Disable Validation in Rome RSS

In my application ROME api tries to validate the feed against and DTD in W3C and after some time it fails since W3C blocks that IP. Is there a way that I can disable XML feed validation in ROME? RSS XML validation is not neccessary since we get the…
budsiya
  • 540
  • 3
  • 14
  • 22
0
votes
1 answer

Rome getAuthor() always returns empty string. Why?

I am parsing RSS Feeds with Rome. The getAuthor method returns null every time, and getAuthors returns an empty list. I am using Rome 1.0. Everything I see online says the same thing and it all seems quite simple. Before I pull down the source and…
Mark Giaconia
  • 3,844
  • 5
  • 20
  • 42
0
votes
1 answer

Building an osgi bundle with rome-1.0 for Adobe CQ

I'm trying to build an osgi bundle for Adobe CQ using rome to generate RSS/Atom feed. The bundle is being built with "maven-bundle-plugin (felix). I can build the bundle with out any error. But while deployin the same in to CQ, using the felix…
kallada
  • 1,829
  • 4
  • 33
  • 64
0
votes
1 answer

Java using Rome and SyndEntry to retrive "getType" field of URL

I am using Rome and SyndEntry(com.sun.syndication.feed.synd.SyndEntry) to retrive "getType" field of URL. Here is the sample xml feed. Best Sellers
manhon
  • 683
  • 7
  • 27
0
votes
2 answers

Problems using ROME feedreader

Im trying to make a newsreader on android 4.1 using the ROME Feed Reader. However, I keep getting errors when my app is trying to call a newsfeed. I've been busy implementing Asynctask, because 4.1 doesn't let me retrieve rss-feeds on the main…
Praetore
  • 99
  • 9
0
votes
1 answer

How to read the WebMaster field with Rome

I am trying to use ROME to parse an RSS feed like this: url = new URL("http://www.rssboard.org/files/sample-rss-2.xml"); XmlReader reader = new XmlReader(url); SyndFeedInput input = new SyndFeedInput(); SyndFeed feed =…
Afshin Moazami
  • 2,092
  • 5
  • 33
  • 55
0
votes
1 answer

The Three ROME Object Models Design Pattern

I have been reading about the three ROME object models which goes like this SyndFeed(Model) <-- conversion --> RSS(Wire Feed Model) SyndFeed(Model) <-- conversion --> Atom(Wire Feed Model) I came to the conclusion that this model wouldn't actually…
zotherstupidguy
  • 2,976
  • 10
  • 39
  • 59
0
votes
1 answer

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 been removed. public static void main(String[]…
0
votes
1 answer

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 :
Neozaru
  • 1,109
  • 1
  • 10
  • 25
1 2 3
9
10