C#

Moderators: None (Apply to moderate this forum)
Number of threads: 2720
Number of posts: 5746

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
RSS Feed -windows mobile application Posted by Preeti_21 on 3 Jun 2009 at 1:26 AM
Hi,

I am developing a device application wherein I need to subscribe to an RSS feed and get notified when there is new news available.How to go with it?
Can anyone provide me the logic or any links for refernce?

Thanks in advance
Report
Re: RSS Feed -windows mobile application Posted by Psightoplazm on 3 Jun 2009 at 8:22 AM
I believe you can actually initialize an XmlTextReader with the uri of the feed and you'll be all set.
></\/~Psightoplasm`~
Report
Re: RSS Feed -windows mobile application Posted by Preeti_21 on 4 Jun 2009 at 3:39 AM
Thanks for the reply.

Can you please elaborate and explain as to go about with the initialisation of XMLTextReader....any sample code will be of great help

Thanks again
Report
Re: RSS Feed -windows mobile application Posted by Preeti_21 on 4 Jun 2009 at 3:40 AM
Thanks for the reply.

Can you please elaborate and explain as to go about with the initialisation of XMLTextReader....any sample code will be of great help

Thanks again
Report
Re: RSS Feed -windows mobile application Posted by Psightoplazm on 4 Jun 2009 at 3:16 PM
            var m = new XmlTextReader("http://msdn.microsoft.com/rss.xml");
            while (m.Read())
            {
                while (m.Name != "item")
                    m.Read();
                while (m.Name != "title")
                    m.Read();
                var title = m.ReadElementContentAsString();
                while (m.Name != "description")
                    m.Read();
                var desc = m.ReadElementContentAsString();

                Console.WriteLine("-------------------");
                Console.WriteLine("***" + title + "\r\n");
                Console.WriteLine(desc);
                Console.WriteLine("-------------------\r\n");
            }

            Console.ReadKey();

></\/~Psightoplasm`~



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.