Reading XML File From URL in C# Providing Logon Credentials How do I read an xml file from URL that requires username and password to login to the page. Use the following Code in C# //Include the following packages using System.Net; using System.IO; //request the particular web page HttpWebRequest request = (HttpWebRequest)WebRequest.Create(“http://sharpprogrammer.com/rss.xml”); //define the login [...]