我的应用程序的这个响应很奇怪吗?
我制作了一个应用程序,通过服务器将 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如上所述,同一主机的默认连接限制为 2,但您可以通过在
App.config
文件中添加以下代码来更改它: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: