8

ヘルプ... HttpWebRequest.GetRequestStream() がタイムアウト例外をスローする理由がわかりません... POST を使用して 2 番目 (およびそれ以降) の接続を確立しようとすると、常に発生します。基本的に、30 秒ごとに接続を作成しようとしています。関連するコードは次のとおりです。

私のメインループ:

for( int i = 0; i < students.Count; i++ ) {

    Log( "Processing: " + students[i].DbID + ";" + students[i].Username + ";" + students[i].Password );

    UserConnection uc = new UserConnection( students[i] );
    uc.ParseAll();


    Log( "Done Processing: " + students[i].DbID + ";" + students[i].Username + ";" + students[i].Password );
}

ユーザー接続から:

public UserConnection( Student student )
{
    this.student = student;

    this.cookies = new CookieContainer();
    this.InitCookies();

    this.courses = new List<Course>();
}


private void InitCookies()
{
    HttpWebRequest req = (HttpWebRequest)WebRequest.Create( baseUri );
    req.Method = "GET";
    req.CookieContainer = this.cookies;

    req.GetResponse();


}

public void ParseAll()
{
    ParseCourseInfo(); //get info for each class
    .
    .
    .
}

private void ParseCourseInfo()
{
    HtmlDocument page = GetPage( "POST", homeUri, "username=" + student.Username + "&password=" + student.Password + "&testcookies=1" );
    .
    .
    .
}

GetPage で次の例外が発生しています。

29/07/2012 1:04:22 PM : Exception: System.Net.WebException
Message: The operation has timed out
Source: System
Stack Trace:    at System.Net.HttpWebRequest.GetRequestStream(TransportContext& context)
   at System.Net.HttpWebRequest.GetRequestStream()
   at URCoursesParserV2.UserConnection.GetPage(String method, Uri pageUri, String queryString) in UserConnection.cs:line 167

問題があるGetPageコードは次のとおりです。

private HtmlDocument GetPage( string method, Uri pageUri, String queryString = "" )
{
    Stream data = null;
    HttpWebResponse res = null;
    HttpWebRequest req = null;
    try {

        req = (HttpWebRequest)WebRequest.Create( pageUri );
        req.CookieContainer = this.cookies;
        req.Timeout = 1000 * 10; //10 seconds - I've also tried leaving it as default
        req.KeepAlive = false; ////I've also tried leaving it as true.

        if( method.ToUpper() == "POST" ) {
            req.Method = "POST";

            if( queryString != "" ) {
                byte[] postBytes = Encoding.UTF8.GetBytes( queryString );
                req.ContentType = "application/x-www-form-urlencoded";
                req.ContentLength = postBytes.Length;

                using( data = req.GetRequestStream() ) { //////////////EXCEPTION HERE ON SECOND ITERATION
                    data.Write( postBytes, 0, postBytes.Length );
                    data.Close();
                }
            }

        } else if( method.ToUpper() == "GET" ) {
            req.Method = "GET";

            if( queryString != "" ) {
                pageUri = new Uri( pageUri.ToString() + '?' + queryString );
            }

        } else {
            return null;
        }

        HtmlDocument page = null;
        using( res = (HttpWebResponse)req.GetResponse() ) {
            using( data = res.GetResponseStream() ) {
                page = new HtmlDocument();
                page.Load( data );
            }
        }
        return page;

    } catch(WebException e) {
        URCoursesParser.Log( e );
        return null;

    } catch( Exception e ) {
        URCoursesParser.Log( e );
        return null;

    } finally { ///data and res probably don't need to be checked here now because of 'using' blocks
        if( data != null ) {
            data.Close();
            data = null;
        }
        if( res != null ) {
            res.Close();
            res = null;
        }
        if( req != null ) {
            req.Abort();
            req = null;
        }
    }
}

何か案は!?!最初の反復は常に問題ありません。プログラムを終了して再起動すると、最初の反復は再びうまくいきます...それは常に2回目以降の反復です。

4

2 に答える 2

28

これは問題の一部である可能性があります:

private void InitCookies()
{
    HttpWebRequest req = (HttpWebRequest)WebRequest.Create( baseUri );
    req.Method = "GET";
    req.CookieContainer = this.cookies;
    req.GetResponse();
}

ここでは、応答を破棄していません...したがって、プールへの接続を返していません。

このメソッドの目的は明確ではありませんが、応答を破棄する必要があります。

using (req.GetResponse()) {}
于 2012-07-29T19:28:30.777 に答える
1

同様の問題がありましたが、応答を待つ前に明示的にメソッドを終了したかったのです。リクエストのタイムアウトを 100 ミリ秒に設定したところ、問題が解決したようです。

于 2015-07-14T21:33:42.877 に答える