0
Reply

C# reading xml file from url

Aran Reddy

Aran Reddy

Jun 11 2014 5:18 AM
601
Hi,
 
I am having some difficulty with finding a solution with my client program.
 
In short it reads an xml file on start up to verify if the data in the local db is up to date by comparing versions.
 
The problem is that some instances of my program read the cached version of the xml file instead of the updated file.
 
Current code:
 
XmlDocument xDoc = new XmlDocument();
xDoc.Load(XmlFileUrl);
 
Thanks in advance..