Tagged Questions
0
votes
1answer
44 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
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
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
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 ...
1
vote
1answer
193 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 ...
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?
1
vote
1answer
1k views
creating Atom feeds with ROME and publishing them
I am a newbie to this pub/sub protocol. Sorry if my questions are very naive.
Could you help me by answering my questions.
I started off creating an atom feed using ROME API looking at the example ...
1
vote
1answer
568 views
Distinguish between HTML/XHTML and plain text in a RSS description-element
Long version:
Those familiar to the standardization nightmare of the RSS-family, may know
that RSS does not provide you with information if for example the "description" element
contains just plain ...
1
vote
2answers
581 views
How do I create an Atom representation with Restlet?
I want to create atom xml representations for my REST resources using Restlet.
Should I (can I?) use ROME or just use the Atom extension for Restlet?
What's the best way to go about this?
Thanks ...