From: Jacob Sparre Andersen on
Has anybody tried to write a (minimal) RSS/Atom reader in Ada? It is
my impression that it should be relatively easy to do with XML/Ada,
but I would like to hear about other's experiences.

Greetings,

Jacob
--
A: Yes.
>Q: Are you sure?
>>A: Because it reverses the logical flow of conversation.
>>>Q: Why is top posting frowned upon?
From: Emmanuel Briot on
Jacob Sparre Andersen wrote:

> Has anybody tried to write a (minimal) RSS/Atom reader in Ada? It is
> my impression that it should be relatively easy to do with XML/Ada,
> but I would like to hear about other's experiences.

Yes, using AWS to communicate with the server (using AWS.Client.Get), and
then XML/Ada to parse the received file, it is indeed quite trivial to have
such a reader.
All depends of course what you want to do with the result afterward. If you
want to show it graphically, it requires more work (using GtkAda, of
course :-), but you can also simply display it in a web page to aggregate
several feeds (use AWS for the server)

Emmanuel