HttpWebRequest 沒法鏈接到遠程服務器

先寫個例子:windows

// string url = "http://127.0.0.1"服務器

HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(url);
request.Method = "POST";
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = postData.Length;
request.Timeout = 6000;app


HttpWebResponse response = null;
try
{
      StreamWriter sw = newStreamWriter(request.GetRequestStream());工具

  ...post

}url

catch(Exception ex)code

{orm

  return ex.Message;    // 沒法鏈接到遠程服務器blog

}string

 

而後嘗試在網頁中輸入「http://127.0.0.1」或者"http://localhost/"均被告知沒法鏈接。解決方法是:

本人使用的是win7。打開控制面板 -> 程序 -> 打開或關閉windows功能,若是所示:

稍等片刻,勾選「Internet信息服務」系統會默認勾選上「Web管理工具」和「萬維網服務」後,系統會進行自動更新安裝。成功後,再次輸入「http://127.0.0.1」或「http://localhost/」出現以下效果:

表示OK!

相關文章
相關標籤/搜索