How to save an XML Doc in remote server

  • Thread starter Thread starter T.Jeywin Lizy
  • Start date Start date
T

T.Jeywin Lizy

How to save an XML Doc in remote server
like we save xml file in local system as doc.Save("data.xml");


where doc is -----> XmlDocument doc = new XmlDocument();
Please let me know what should be the parameter of Save() method to store in
FTP.


Thanks
Lizy
 
T.Jeywin Lizy said:
How to save an XML Doc in remote server
like we save xml file in local system as doc.Save("data.xml");


where doc is -----> XmlDocument doc = new XmlDocument();
Please let me know what should be the parameter of Save() method to store
in
FTP.

If the FTP server you're talking about is local to you, then you should be
able to give the UNC/directory name/data.xml in the doc.Save(UNC/directory
name/data.xml ). I'll assume you know what UNC means.
 
Back
Top