Click here to Skip to main content
Licence CPOL
First Posted 30 Mar 2007
Views 22,569
Bookmarked 23 times

HttpWebRequest/Response in a Nutshell - Part 2 - Extending the Web

By | 30 Mar 2007 | Article
After Part 1 - The basics - We will try to extend our application.

Introduction

Ok, now that we've created our HttpWebRequest/Response program, we're going to extend that with XML (eXtensible Markup Language).

Why XML?

Because XML is becoming (if it isn't already) the (web)standard for exchanging data. As developers, we'd like to know how it works, isn't it? :)

Anyhow, this time we're going to create a little RSS reader (command line).

Using the Code

Ok, first, if you don't know about HttpWebRequest/Response yet, visit part 1.
So, we'll start off with some code:

using System;
using System.Collections.Generic;
using System.Net;
using System.Xml;
using System.IO;

namespace RSS_reader
{
    class MainClass
    {
        
        public static void Main(string[] args)
        {
            if (args.Length < 1 || args.Length > 1)
            {
                Console.Write(string.Format
		("Usage: {0} RSS-site{1}Example: {0} 
		http://www.codeproject.com/webservices/articlerss.aspx?cat=1",
                  "RSS-reader.exe",
                  Environment.NewLine));
                return;
            } else {
                HttpWebRequest WebReq = (HttpWebRequest)WebRequest.Create(args[0]);
                WebReq.Method = "GET";
                HttpWebResponse WebResp = (HttpWebResponse)WebReq.GetResponse();
                if (WebResp.StatusCode == HttpStatusCode.OK)
                {
                    Stream Answer = WebResp.GetResponseStream();
                    XmlTextReader response = new XmlTextReader(Answer);
                    while (response.Read())
                    {
                        switch (response.NodeType)
                        {
                            case XmlNodeType.Element:
                                if (response.Name == "title" ||
                                    response.Name == "description" ||
                                    response.Name == "link" ||
                                    response.Name == "author")
                                {
                                    string t = response.Name;
                                    response.Read();
                                    Console.WriteLine(string.Format("{0}: {1}", 
					t, response.Value));
                                }
                                
                                break;
                        }
                    }
                    response.Close();
                } else
                {
                    Console.Write(string.Format("Error, wrong statuscode: {0}", 
				WebResp.StatusCode.ToString()));
                }
                Console.Read();
            }
        }
    }
}

Ok, I admit, it's VERY basic, but it kind of shows how it's easy to implement XML in your HTTP-oriented program. I'll be extending this article soon though.

History

  • 31-03-2007 01:00 (local time - Belgium) Started writing document
  • 31-03-2007 01:33 (local time - Belgium) Stopped writing document, this is v0.1

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

CPF_



Belgium Belgium

Member

Started coding at age of 12 (approx.) started out with pascal, went to Delphi, and from Delphi to BC++ (all in one year), did several years with BC++, and later on started to learn some html, php, mysql... Now more into C#, python, php.
Current age: 17

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
QuestionWhat about posting XML data? PinmemberTom Wright9:22 25 Sep '08  
GeneralBroken link to Part 1 PinmemberPeter Mortensen23:12 16 Apr '08  
GeneralRe: Broken link to Part 1 PinmemberPeter Mortensen23:15 16 Apr '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120517.1 | Last Updated 30 Mar 2007
Article Copyright 2007 by CPF_
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid