0

次のWeb サイトのテーブルをスクレイピングしようとしています。

それは私に与えます"[an error occurred while processing this directive]"

昨日まで機能していたのに、エラーが発生し始めました。コード内で試し"URLDownloadToFile"てみましたが、どちらも同じエラーをスローします。"HTTPResponseStream"VB.net

何かご意見は?私はサーバー側でプログラミングしていません。これは単純な Web/画面のスクレイピングです。

コード スニペットの追加 -

    Dim web_address As String
    'web_address = "http://iso-ne.com/sys_ops/op_frcstng/7day_frcst/index.html"
    web_address = "http://iso-ne.com/sys_ops/op_frcstng/csvdocs/seven_day_forecast2012-07-27-10-13.csv"

    'Dim myReq As HttpWebRequest = WebRequest.Create(web_address)
    'Dim myReq_response As Net.HttpWebResponse
    'myReq_response = myReq.GetResponse()
    'Dim sr As IO.StreamReader = New StreamReader(myReq_response.GetResponseStream) 'Imports System.IO
    Dim strng As String
    'strng = sr.ReadToEnd()


    Dim fileDownloadReq As HttpWebRequest
    Dim fileDownloadResponse As HttpWebResponse
    ' fileDownloadReq = Net.HttpWebRequest.Create(web_address)
    'fileDownloadReq.Method = "get"
    ' fileDownloadResponse = fileDownloadReq.GetResponse


    'Get the data from the page
    'Dim stream As StreamReader = New StreamReader(fileDownloadResponse.GetResponseStream())
    'strng = stream.ReadToEnd()
    'fileDownloadResponse.Close()

    Dim genscapeDataFile As Long
    Dim raw_file_path As String
    raw_file_path = "C:\NEPOOL\ISONE_Seven_day_Raw.csv"
    genscapeDataFile = URLDownloadToFile(0, web_address, raw_file_path, 0, 0)
4

1 に答える 1

0

これは、コードではなく、ホスティングWebページのエラーです。このような不可解な問題が発生した場合は、可能であればページに直接移動して、期待どおりに機能していることを確認する必要があります。

IEでこのページに移動すると、同じエラーメッセージが表示されます。

于 2012-07-27T19:52:05.893 に答える