InvalidOperationException:生成XML文档时出错

时间:2018-07-16 06:08:48

标签: c# asp.net web-services webmethod

我有一个定义如下的Web服务方法

[WebMethod]
public DataTable GetPrintingList()
{
    DataTable DT = new DataTable();
    DT = CommonModule.Connection.ExecuteDataTable("SELECT QUERY");
    return (DT);
}

使用这种Web服务方法时,我会遇到异常

  

System.InvalidOperationException:'生成一个错误   XML文档。

执行选择查询后,我在DataTable中得到2行15列。

1 个答案:

答案 0 :(得分:0)

[WebMethod]
public DataTable GetPrintingList()
{
    DataTable DT = new DataTable();
    DT = CommonModule.Connection.ExecuteDataTable("SELECT QUERY");
    DT.TableName = "tableNameHere";
    return (DT);
}