We need you!

We're working hard on the next version of Developer Fusion. Let us know what you think we should be up to!

Members

Technology Zones

Articles

Hosted By

MaximumASP

Info

Rated
Read 66,159 times

Contents

Downloads

Related Categories

Accessing Hotmail using C# - Building the Client

wvanvugt

Building the Client

To build the client two components need to be created:

  • A proxy that is able to ‘speak' Httpmail and is able to do HTTP authentication as described in the RFC.
  • The actual client that accesses Hotmail via the proxy and uses XPath for parsing of the responses.

Instead of building a custom proxy another method could be used. Microsoft ships a component called XmlHttp that is able to make XML based HTTP requests. The use of this class presented several problems:

  1. A request for a limited amount of properties, such as the msgfolderroot, returns all the possible responses for that request. So a query to obtain only the msgfolderroot would return information about all the mailboxes. This isn't fatal of course but it does show that the class could use some work. The proxy class that is built in this document does not show this problem.
  2. The component generates weird looking HTTP packets. For instance, the query is placed in the HTTP headers, it should be sent as a data section. This will probably result in erroneous server responses, and may be causing problem 1.
  3. Most importantly; the component will not work for some email addresses, while the only configuration that can be made is the username and password. This problem is the biggest show-stopper when using XmlHttp.

Before reading the rest of this document; I assume that you have basic knowledge of the following subjects:

  • HttpMail
  • XPath
  • Basic C#
  • Cookies

Please note that the code is fully documented in the source files.

Comments

  • Code Project same ...

    Posted by tidoy on 13 Dec 2004

    Which one is the wannabee? You or Code Project author of the same class.....:eek:

    Thx!
    Tidoy

  • 402 Payment Required

    Posted by coesy on 06 Dec 2004

    Hi,

    I tried running this code as it would have been nice to develop my own hotmail client, however on running it does say Error 402 Payment Requred, on some research it does look like to you have t...