R
Ryan Ramsey
I currently have this code:
string filePath = "c:\\results.xml"
PlayersDataSet.ReadXml(filePath);
and it works fine, it reads the local xml file into a dataset...
If I change the filePath to a readable source on a remote server:
string filePath = http://finao.net/results.xml;
PlayersDataSet.ReadXml(filePath);
I get an exception:
The 'meta' start tag on line 6 does not match the end tag of 'HEAD'.
Line 7, position 3.
Any suggestions? Im stumped.
Ryan
string filePath = "c:\\results.xml"
PlayersDataSet.ReadXml(filePath);
and it works fine, it reads the local xml file into a dataset...
If I change the filePath to a readable source on a remote server:
string filePath = http://finao.net/results.xml;
PlayersDataSet.ReadXml(filePath);
I get an exception:
The 'meta' start tag on line 6 does not match the end tag of 'HEAD'.
Line 7, position 3.
Any suggestions? Im stumped.
Ryan