线程中的 HttpWebResponse 抛出 Forbidden

发布于 2024-10-22 07:40:59 字数 631 浏览 2 评论 0原文

我想多次调用网络资源,但是在询问网络响应时被禁止。

protected void Page_Load(object sender, EventArgs e)
    {


        Thread[] tt = new Thread[10];
        for (int i = 0; i < 10; i++)
        {            
            Thread t = new Thread(doJob);
            tt[i] = t;
            t.Start();
        }

        foreach (Thread t in tt)
        {
            t.Join();
        }
        Response.Write("TOTAL" + howmanyDone);
    }

    private void doJob()
    {        
        HttpWebRequest wr = (HttpWebRequest) HttpWebRequest.Create("http://www.google.com");        
        WebResponse res = wr.GetResponse();

I would like to call multiple times to a web resource, however I get forbidden when asking the webresponse.

protected void Page_Load(object sender, EventArgs e)
    {


        Thread[] tt = new Thread[10];
        for (int i = 0; i < 10; i++)
        {            
            Thread t = new Thread(doJob);
            tt[i] = t;
            t.Start();
        }

        foreach (Thread t in tt)
        {
            t.Join();
        }
        Response.Write("TOTAL" + howmanyDone);
    }

    private void doJob()
    {        
        HttpWebRequest wr = (HttpWebRequest) HttpWebRequest.Create("http://www.google.com");        
        WebResponse res = wr.GetResponse();

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

源来凯始玺欢你 2024-10-29 07:40:59

对同一域的默认限制是 2 个同时请求
进入框架。只需将这行代码放入您的代码中即可
您已创建 HttpWebRequest 对象:

wr.ServicePoint.ConnectionLimit = 50;

查看文档:http://msdn。 microsoft.com/en-us/library/kd5csyhf.aspx

There's a default limit of 2 simultaneous requests to the same domain built
into the framework. Just put this line of code into your code after
you've created the HttpWebRequest object:

wr.ServicePoint.ConnectionLimit = 50;

Check out the docs: http://msdn.microsoft.com/en-us/library/kd5csyhf.aspx

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文