----------------------------------------------------------- New Message on BDOTNET
----------------------------------------------------------- From: nicesuji Message 1 in Discussion Hi, i was trying to simulate the hotmail through C#. here is the sample code using System; using System.Xml; using System.IO; using System.Collections; using MSXML2; string serverUrl = "http://services.msn.com/svcs/hotmail/httpmail.asp"; // Create the object. xmlHttp_ = new XMLHTTP(); // Build the query. string folderQuery = null; folderQuery += "<?xml version='1.0'?><D:propfind xmlns:D='DAV:' "; folderQuery += "xmlns:h='http://schemas.microsoft.com/hotmail/' "; folderQuery += "xmlns:hm='urn:schemas:httpmail:'><D:prop><h:adbar/>"; folderQuery += "<hm:contacts/><hm:inbox/><hm:outbox/><hm:sendmsg/>"; folderQuery += "<hm:sentitems/><hm:deleteditems/><hm:drafts/>"; folderQuery += "<hm:msgfolderroot/><h:maxpoll/><h:sig/></D:prop></D:propfind>"; // Open a connection to the hotmail server. xmlHttp_.open("PROPFIND", serverUrl, false, username, password); // Send the request. xmlHttp_.setRequestHeader("PROPFIND", folderQuery); xmlHttp_.send(null); // Get the response. string folderList = xmlHttp_.responseText; // Parse the folder list. ParseFolderList(folderList); even if i give the username and password correct, i am getting an exception that, System.UnauthorisedAccessException........ any help will be greatly appreciate. wht went wrong? Regards Sujith _________________________________________________________________ Pay Cash on delivery of� products. http://go.msnserver.com/IN/47509.asp Free Registration on Baazee.com ----------------------------------------------------------- To stop getting this e-mail, or change how often it arrives, go to your E-mail Settings. http://groups.msn.com/bdotnet/_emailsettings.msnw Need help? If you've forgotten your password, please go to Passport Member Services. http://groups.msn.com/_passportredir.msnw?ppmprop=help For other questions or feedback, go to our Contact Us page. http://groups.msn.com/contact If you do not want to receive future e-mail from this MSN group, or if you received this message by mistake, please click the "Remove" link below. On the pre-addressed e-mail message that opens, simply click "Send". Your e-mail address will be deleted from this group's mailing list. mailto:[EMAIL PROTECTED]
