Reading Xml Data
-
Hi, I have to get data from below URL(created using classic ASP) [http://10.10.5.5/Myproject/AppRequest.asp?xml=<?xml version="1.0" encoding="UTF-8"?><Request userid="5"></Request>](http://10.10.5.5/Myproject/AppRequest.asp?xml=<?xml version=)[[^](http://10.10.5.5/Myproject/AppRequest.asp?xml=<?xml version= "New Window")] This URL returns Xml page as response. when i copy this url in my browser and hit enter ,an Xml documenet is opening in Browser. I wanted to capture this xml Respose in my .Net application how to call this URL and execute this to capture the response Xml.
-
Hi, I have to get data from below URL(created using classic ASP) [http://10.10.5.5/Myproject/AppRequest.asp?xml=<?xml version="1.0" encoding="UTF-8"?><Request userid="5"></Request>](http://10.10.5.5/Myproject/AppRequest.asp?xml=<?xml version=)[[^](http://10.10.5.5/Myproject/AppRequest.asp?xml=<?xml version= "New Window")] This URL returns Xml page as response. when i copy this url in my browser and hit enter ,an Xml documenet is opening in Browser. I wanted to capture this xml Respose in my .Net application how to call this URL and execute this to capture the response Xml.
Look into
System.Net.WebClient
class. Work with DownloadString[^] method and save the string with.xml
extension.Navaneeth How to use google | Ask smart questions
-
Look into
System.Net.WebClient
class. Work with DownloadString[^] method and save the string with.xml
extension.Navaneeth How to use google | Ask smart questions
Hi I am using ASP.Net 1.1,I am not finding this namespace.Please suggest.
-
Look into
System.Net.WebClient
class. Work with DownloadString[^] method and save the string with.xml
extension.Navaneeth How to use google | Ask smart questions
Thanks You It is working.