0

我创建了一个网页,该网页能够向其他网站发布一些价值,并从该页面获取作为 HTML 文档的响应。从其他网站获得响应后,我将在 HTMLAgilityPack 的帮助下对其进行解析并获取所需的数据。然后将这些数据保存在 SQL Server 数据库中。这一切场景在开发环境中运行良好,但在服务器上部署后,出现上述错误。

这是我从其他网站获取数据、解析和保存数据的功能。

public static string FetchDataFromWebsite(string uId)
    {
        string url = "http://demourl.aspx";
        var encoding = new ASCIIEncoding();
        string postData = "some data to post";
        byte[] data = encoding.GetBytes(postData);

        var myRequest = (HttpWebRequest)WebRequest.Create(url);
        myRequest.Method = "POST";
        myRequest.ContentType = "application/x-www-form-urlencoded";
        myRequest.UserAgent = "Mozilla/5.0 (Windows; U; Windows NT 6.0; sv-SE; rv:1.9.1b2) Gecko/20081201 Firefox/3.1b2";
        myRequest.ContentLength = data.Length;
        var newStream = myRequest.GetRequestStream();
        newStream.Write(data, 0, data.Length);
        newStream.Close();

        var response = myRequest.GetResponse();
        var responseStream = response.GetResponseStream();
        var responseReader = new StreamReader(responseStream);
        var result = responseReader.ReadToEnd();

        HtmlDocument doc = new HtmlDocument();
        doc.LoadHtml(result);

        var table = doc.DocumentNode.SelectSingleNode("//*[@id='GridView1']");
        if (table != null)
        {
            var tr = table.SelectSingleNode("//tr[2]");
            string[] trData = new string[12];

            int rowCount = 0;

            foreach (HtmlNode td in tr.SelectNodes("//td"))
            {
                rowCount++;
                if (rowCount > 3 && rowCount < 16)
                {

                    trData[rowCount - 4] = td.InnerText;
                }
                if (rowCount >= 16)
                {
                    break;
                }
            }
            saveDataInDatabase(trData);
            return "Cheers! data saved.";

        }
        else
        {

            var span = doc.DocumentNode.SelectSingleNode("//span[@id='lbmessage']");
            string message = span.InnerText;
            InsertErrorLog(uId, message);
            return "No data found";
        }
}

我在做错事的地方,这给了我这个错误。以上错误可能是由于某些服务器设置造成的,请帮忙修改设置。顺便说一句,我使用 IIS 7.5 作为服务器,服务器操作系统是 Windows server 2008 R2。

静候你的评价。

4

1 回答 1

0

我得到了这个问题的答案。它实际上是由于 SQL Server 端不正确的数据类型转换而发生的。我错误地将 ex.innerException 传递到数据类型为 nvarchar 的字段中。这就是发生异常的原因。

因此,这里的最后一点是:如果您尝试将某些参数从任何语言传递到 SQL Server,您必须确保数据类型彼此匹配或可互操作。

于 2013-07-02T08:46:07.990 回答