C#使用(HttpWebRequest)WebRequest.Create()判断是不是连接服务器时,请求时间过久
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C#使用(HttpWebRequest)WebRequest.Create()判断是不是连接服务器时,请求时间过久相关的知识,希望对你有一定的参考价值。
是(HttpWebRequest)WebRequest.Create(url)这段代码一直在请求怎么回事,局域网测试,url同一网段时,能回复请求成功与否,当url不同网段时一直在请求不停止的,这是怎么回事?(HttpWebRequest)WebRequest.Create(url)长时间不报错!!
改方法有设置超时时间的。因为默认的超时时间很长。
所以不报错。追问
怎么设置??
追答HttpWebRequest req=(HttpWebRequest)WebRequest.Create(url);
req.Timeout = 5*1000; //连接超时
req.ReadWriteTimeout = 5 * 1000; //访问成功后读写流超时
我用的2个参数。
应该够你用了。
后者用的应该不多,用默认的就好,具体要看你的数据交互量的。
response.StatusCode返回的是什么追问
没有任何返回值,因为上面
(HttpWebRequest)WebRequest.Create(url)阻塞了,都到不了response.StatusCode
,怎么解决
你请求加几个条件吧,
req.Method = "HEAD";
req.Timeout = timeout; //超时时间
C#使用HttpWebRequest请求url出现远程服务器返回一个错误:401未经授权
需要将本系统页面去请求一个URL看是否能返回一些信息来判断已有另一个系统的登录信息,实际上就是实现单点登录,但是后台调试出现401错误,这个url用浏览器是可以访问的,不知道是什么问题,请高手帮忙~~代码如下~
HttpWebRequest webrequest = (HttpWebRequest)HttpWebRequest.Create("http://portal.boe.com.cn/boe-SSOAuthen/index.jsp?ltpatoken=LQyfa6TV9rJWZ+uHtLyUL1IBVwDCuv7wmO72FRuxGpoI1m9Px7w2oyOJlpbHm7pB0hq4SscXnTcNMIXciyBjNJF+zboqe+9Jxdwer9zz2R8g67vrLJjoUNZ38pPkD72cQ0vCwjJol30zhW2ajZBj+vf+Rsj9h5uMYmIxEeq5t0De4m3WUdLrDhnn8Aky4it2zDyistaOexfP2nkDPEJmgjpGdtN/Qh2gLDRf74/RZHBSrTXr/W4MCfS4F6SkXKkYifoxQngeC2fMoemXFA89QaDTdbzElbjH1AHJRpTfMTH3XyBAQOVX7cuXPz6U7/B2HymtNa2acYa5VpZLXaUmTb2Eoa787967");
webrequest.Credentials = CredentialCache.DefaultCredentials;
HttpWebResponse webreponse = (HttpWebResponse)webrequest.GetResponse();
Stream stream = webreponse.GetResponseStream();
byte[] rsByte = new Byte[webreponse.ContentLength]; //save data in the stream
try
stream.Read(rsByte, 0, (int)webreponse.ContentLength);
return System.Text.Encoding.UTF8.GetString(rsByte, 0, rsByte.Length).ToString();
catch (Exception exp)
return exp.ToString();
* Created by SharpDevelop.
* User: Austin
* Date: 2015/10/16
* Time: 10:52
*
* To change this template use Tools | Options | Coding | Edit Standard Headers.
*/
using System;
using System.IO;
using System.Net;
using System.Text;
namespace nezha_api_test
public class Hello
private static string username = "***********";
private static string password = "**************";
public static void Main(string[] args)
try
string url = "**************";
HttpWebRequest request = WebRequest.Create(url) as HttpWebRequest;
request.Credentials = GetCredentialCache(url, username, password);
request.Headers.Add("Authorization", GetAuthorization(username, password));
request.Method = "GET";
HttpWebResponse myResponse = request.GetResponse() as HttpWebResponse;
StreamReader reader = new StreamReader(myResponse.GetResponseStream(), Encoding.UTF8);
string s = reader.ReadToEnd();
reader.Close();
myResponse.Close();
Console.WriteLine(s);
Console.Read();
catch (WebException e)
StreamReader reader = new StreamReader(e.Response.GetResponseStream(), Encoding.UTF8);
string s = reader.ReadToEnd();
Console.WriteLine(s);
Console.Read();
#region # 生成 Http Basic 访问凭证 #
private static CredentialCache GetCredentialCache(string uri, string username, string password)
string authorization = string.Format("0:1", username, password);
CredentialCache credCache = new CredentialCache();
credCache.Add(new Uri(uri), "Basic", new NetworkCredential(username, password));
return credCache;
private static string GetAuthorization(string username, string password)
string authorization = string.Format("0:1", username, password);
return "Basic " + Convert.ToBase64String(new ASCIIEncoding().GetBytes(authorization));
#endregion
参考技术C 要先登录,保持COOKIE再访问你上面的地址。追问
我试过先登录需验证的系统,然后再打开当前页面,但是还是不行提示401错误
追答COOKIE容器,要使用。保持前面的验证后COOKIE,再访问
以上是关于C#使用(HttpWebRequest)WebRequest.Create()判断是不是连接服务器时,请求时间过久的主要内容,如果未能解决你的问题,请参考以下文章
C# 使用 HTTPWebRequest 拉取网页并从站点执行 javascript
C# httpwebrequest 和 javascript
使用 C# 和 HttpWebRequest 向端点发送 POST 请求
要在 C# 中使用 RESTful Web 服务,我应该使用 HttpWebRequest 吗?