我的应用程序的这个响应很奇怪吗?

发布于 2025-01-03 01:53:21 字数 504 浏览 1 评论 0原文

我制作了一个应用程序,通过服务器将 URL 列表转换为新的重定向 URL 列表。但我从我的申请中看到了一些奇怪的反应。

仅当重定向 URL 的域名相同时,它才能够转换最多 2 个 URL。即,如果我有 URL 列表,那么它会开始转换,但如果有超过 2 个相同域名的重定向 URL,则它无法转换 URL,否则它工作正常。因此,如果超过 2 个具有相同域名的重定向 URL,则无法继续进行。

为什么会发生这种情况?

我的代码是:

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url);
request.CookieContainer = cookieContainer;
WebResponse myWebResponse = request.GetResponse();
absoluteUri = request.GetResponse().ResponseUri.AbsoluteUri;

我需要帮助。

I have made an application that converts list of URLs to it's new redirected URLs list by server. But i have seen some weird response from my application.

It's only able to convert Max 2 URLs only if redirected URLs's domain name is same. i.e if i have list of URLs then it starts conversion but it can not convert URL's if there are more than 2 redirected URL's of same domain name otherwise its working fine. So if more than 2 redirected URLs that have same domain name process can not be proceed.

Why this is happening?

My code is :

HttpWebRequest request = (HttpWebRequest)WebRequest.Create(Url);
request.CookieContainer = cookieContainer;
WebResponse myWebResponse = request.GetResponse();
absoluteUri = request.GetResponse().ResponseUri.AbsoluteUri;

I need help.

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

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

发布评论

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

评论(1

岁吢 2025-01-10 01:53:21

如上所述,同一主机的默认连接限制为 2,但您可以通过在 App.config 文件中添加以下代码来更改它:

 <configuration> 
  <system.net> 
    <connectionManagement> 
      <add address="*" maxconnection="100" /> 
    </connectionManagement> 
  </system.net> 
</configuration>

As being said default connection limit to the same host is 2, but you can change it adding following code to your App.config file:

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