using System; public class RSSClient { public static void Main(string[] args) { try { item comment = new item(); comment.title="post from C#"; comment.link="http://www.intertwingly.net/stories/2003/03/28/c#"; comment.description="... using WSDL"; comment.author="Sam Ruby "; RSS rss = new RSS(); rss.Url = "http://www.intertwingly.net/blog/1294.soap"; rss.POST(ref comment); System.Console.WriteLine(comment.link); } catch (Exception e) { System.Console.Write(e); } } }