我已经调用了一个Web服务,它返回xml Web服务的纯文本。我想要的是将纯文本(字符串)放入数据表中。我可以这样做吗。 这是我的代码。
WebClient client = new WebClient();
string url = string.Format("https://www.someurl/products.ashx");
string response = client.DownloadString(url);
此代码重新编译Web服务的字符串(纯文本)。
答案 0 :(得分:0)
请尝试以下操作:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Data;
using System.Xml;
namespace ConsoleApplication56
{
class Program
{
static void Main(string[] args)
{
string response = "";
XmlReader reader = XmlReader.Create(response);
DataSet ds = new DataSet();
ds.ReadXml(reader);
}
}
}