如何将xml web服务返回的纯文本添加到c#、mvc中的数据表中

本文关键字:添加 数据表 mvc 文本 xml web 返回 服务 | 更新日期: 2023-09-27 18:21:06

我调用了一个web服务,它返回xml web服务的纯文本。我想要的是把纯文本(字符串)放到数据表中。我该怎么做呢。这是我的密码。

           WebClient client = new WebClient();
           string url =  string.Format("https://www.someurl/products.ashx");
           string response = client.DownloadString(url);

这段代码会重新运行web服务的字符串(纯文本)。

如何将xml web服务返回的纯文本添加到c#、mvc中的数据表中

尝试以下操作:

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);
        }
    }
}