Tag Archives: Web Service

Serializing Objects in JSON format

Serializing data/objects using XML is quite a standard way over the Web. But, XML has it’s own set of disadvantages owing to which I tried serializing objects in JSON format. It seems .NET has in-built support for doing the same. One simply needs to use the JavaScriptSerializer class available within ‘System.Web.Script.Serialization’ namespace. using System; using […]

0  

Fetch Blog Data from RSS link

As part of rebuilding my website from scratch, I was longing to display the titles (and links) of my recent blog articles. There are many RSS fetcher implementations online but I wanted to make one by myself (Breath of fresh air 😛 ). Initially, all I could think of is using a Web Service to […]

0