Powered by discountASP.NET
referal ID: sdtref
Why recommend discountASP.NET?

Archives
Steve Trefethen Steve's RSS Feed Subscribe or via email
What's this?
Contact me Send mail to the author(s)
About Me
View my LinkedIn profile

Add to Google
Subscribe with Bloglines
MCP Microsoft Certified Professional

Falafel Software
ActiveFocus Project Management Solution by Falafel Software
Online or OnSite TestComplete Training
Blogroll
Recent Comments
My Online Tools
Stats
Total Posts: 441
This Year: 46
This Month: 2
This Week: 0
Comments: 1526
Tags
Disclaimer
The posts on this weblog are provided �AS IS� with no warranties, and confer no rights. The opinions expressed herein are my own personal opinions and do not represent my employer�s view in any way.
 Saturday, February 10, 2007

Aggregated CodeGear news feed using Yahoo Pipes

Posted @ 12:07PM by Steve Trefethen

Categories: CodeGear | RSS

Tags:  | 

Using Yahoo Pipes I've created a news feed for CodeGear drawing items from Google, Technorati and Bloglines. Here is the feed URL which if you click will take you to a Yahoo page that will provide you more options to subscribe and/or edit this feed for your own use using Pipes. If you're into RSS/Atom I'd highly recommend checking out Pipes as it's a major milestone in aggregation. Btw, you might be interested in to my link blog where I'd linked to Yahoo Pipes the other day.
 Wednesday, November 01, 2006

AJAX/RSS examples uploaded to code central

Posted @ 1:14PM by Steve Trefethen

Categories: AJAX | ASP.NET | Delphi | RSS

Tags:  |  |  | 

I'm not sure why I hadn't done this before but I just uploaded the two Delphi for .NET AJAX examples and my recent Windows RSS Platform example to CodeCentral. You can find links for all of these downloads on my author page. The examples include:

Updated Jan 19, 2007: Fix URLs

Using Microsoft's Windows RSS Platform from IE7 in Delphi (Win32)

Posted @ 1:29AM by Steve Trefethen

Categories: Delphi | Programming | RSS

Tags:  |  | 

Recently, Microsoft introduced the Windows RSS Platform which allows you to programmatically manipulate RSS feeds for use in your own applications. I'm a big fan of RSS and thus this new platform interested me. Thankfully a Microsoft blogger named Walter vonKoch was kind enough to post the RSS Platform MiniSDK including the type library msfeeds.tlb that we can easily import into Delphi. Big thanks to Walter for posting this!

In the interest of completeness I used the tlibimp utility that ships with BDS to import the type library using the following command line:

tlibimp -Hr- -Hs- -Fe- msfeeds.tlb

Here is a Delphi Win32 project I wrote which is likely the quickest/dirtiest RSS reader you may ever run into but it illustrates my point which is to use the new Microsoft Windows RSS Platform from Delphi nicely. Disclaimer: I quickly hacked together this application with the sole interest of using as little of my time as possible leaving the details as an exercise for the reader. A few important points:

  • The imported type library unit is included in the download
  • The unit was imported using the tlibimp from Highlander so please let me know if you run into any issues compiling it with earlier versions of BDS
  • To run this demo you must have IE7 installed

Lastly, should you write something really cool using this platform please let me know I'd love to hear about it.

Reference: