From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Thread: 103376,67f13b01c8f135c3 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news2.google.com!news4.google.com!border1.nntp.dca.giganews.com!nntp.giganews.com!newsfeed00.sul.t-online.de!t-online.de!tiscali!newsfeed1.ip.tiscali.net!news.tele.dk!news.tele.dk!small.news.tele.dk!lnewsinpeer00.lnd.ops.eu.uu.net!emea.uu.net!read.news.fr.uu.net!not-for-mail Message-ID: <45dc0fae$0$428$4d4eb98e@read.news.fr.uu.net> From: Emmanuel Briot Subject: Re: RSS/Atom reader? Newsgroups: comp.lang.ada Date: Wed, 21 Feb 2007 10:24:09 +0100 References: User-Agent: KNode/0.10.4 MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7Bit NNTP-Posting-Host: lyon.act-europe.fr X-Trace: 1172049838 read.news.fr.uu.net 428 212.157.227.160:14429 X-Complaints-To: abuse@fr.uu.net Xref: g2news2.google.com comp.lang.ada:9372 Date: 2007-02-21T10:24:09+01:00 List-Id: 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