Friends, I am able to get XML file by sing bytes, perhaps which is getting some problem. Can u suggest me alternate method to do the same thing to save XML file?
<
Why not just use the WebClient class and its DownloadFile method?? Seems a lot easier....
WebClient
DownloadFile
This is in C#, but you should have no trouble converting that to VB.NET:
WebClient wc = new WebClient(); wc.DownloadFile("http://xyz", @"C:\getxml.xml");
and you're done!
Marc