Aran Reddy

Aran Reddy

  • NA
  • 2
  • 2.4k

C# reading xml file from url

Jun 11 2014 5:18 AM
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..