views:

37

answers:

1

My boss wants me to write a simple RSS feed for an C++ MFC app that will pull and display information from the company's website. It also must be able to grab program updates from the website, tell the user that there are updates and then install the updates. Are there any tutorials that follow these guide lines? How would stackoverflow.com implement these requirements? Libraries, tutorials or guidance would all be great!

+1  A: 

RSS is not more than XML (Ref). Under Windows/MFC you can use MSXML directly or use this MSXML wraper class, tinyxml, or other any other XML library to handle XML.

Update: To download RSS you can use CHttpFile.

mmonem
Thanks for the post. What about grabbing program updates and installing them? any ideas?
TheFuzz
Check the updated answer
mmonem
Your update helps with downloading the xml data, but if I wanted to download a .msi or .exe patch and execute it how could i do that?
TheFuzz
Using RSS you know the latest version. If a new version exists, go download it using CHttpFile also.
mmonem