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
2
votes
1 answer

When creating an RSS Feed using Rome, how can I add Comments?

I want to create a RSS Feed using Rome (it looks like the site is abandoned). For each entry, I would like to add a Comments element. Comments is part of the RSS spec: comments : URL of a page for comments relating to the item. How I can add…
rince
  • 1,988
  • 1
  • 20
  • 24
2
votes
0 answers

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. Here's some code: val sfi = new SyndFeedInput val…
emchristiansen
  • 3,550
  • 3
  • 26
  • 40
2
votes
3 answers

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 been stopped already. Could not load…
Harry
  • 4,705
  • 17
  • 73
  • 101
2
votes
1 answer

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 the icon (e.g. the URL) via ROME or does anybody…
Baz
  • 36,440
  • 11
  • 68
  • 94
1
vote
3 answers

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 such conditions what should I do?
Coder Guru
  • 513
  • 3
  • 18
  • 37
1
vote
1 answer

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 format.Actually i want to sort the blog posts according to the…
Coder Guru
  • 513
  • 3
  • 18
  • 37
1
vote
3 answers

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) The code is as below: public static void…
vaibhav
  • 3,929
  • 8
  • 45
  • 81
1
vote
2 answers

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 line 14: The element type "meta" must be terminated by…
1
vote
3 answers

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 server. I have been unable to figure out how this can…
jspyeatt
  • 519
  • 2
  • 6
  • 18
1
vote
1 answer

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
Vineeth Mohan
  • 18,633
  • 8
  • 63
  • 77
1
vote
0 answers

How to get this isPermaLink="false" text from guid?

How to get this text isPermaLink="false" from guid? article-67228311 I am using this library com.rometools.rome.feed.synd.SyndEntry. Is there a way to get value inside guid tag using this library? The below print…
selvi
  • 1,271
  • 2
  • 21
  • 41
1
vote
0 answers

Extension 'Rome' is configured as formatter but it cannot format 'TypeScript'-files

I'm experiencing this problem with VSCode with the extension, Rome 0.28.0, installed. My .vscode/settings.json includes { "editor.defaultFormatter": "rome.rome", "[typescript]": { "editor.defaultFormatter": "rome.rome" } } I've…
Neil VanLandingham
  • 1,016
  • 8
  • 15
1
vote
3 answers

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 be under active development right now. Is this really the…
Salim Fadhley
  • 22,020
  • 23
  • 75
  • 102
1
vote
1 answer

(ClassNotFoundException/Android) Proguard removing rome dex on release build. Is it proguard?

I have an Android project using Rome for rss, that works perfectly fine when using the debug build (refer to down below). But when I switch to release, it gives me: java.lang.ClassNotFoundException: Didn't find class…
Bobabooy114
  • 55
  • 1
  • 7
1
vote
1 answer

Rome datetimepicker(JS)

I want to use rome datetimepicker. If the user selects date do not hide the datetime picker. Hide it only after time selection. I am using this library https://bevacqua.github.io/rome/
anduplats
  • 885
  • 2
  • 14
  • 24