getting xml page without using webrequest ?

mpooley

Active member
Joined
Jan 4, 2009
Messages
32
Programming Experience
Beginner
Hi
I want to read an xml page from my local server without using webrequest.
is this possible? I have looked at xmlreader etc but that wont read from a webpage.

is this possible please?

oh and the reason i dont want to use webrequest?
well at random times i am getting timeouts which cause my program to more or less lockup.

thanks

Mike:confused:
 
You can specify a web url to Xml file for XmlReader.Create method, and also XmlDocument.Load method. You should Try-Catch this since the file may not be available at the time of the request.
 
Back
Top