我在 Win 7 IIS 上运行一个非常简单的 Web 应用程序(Asp.Net MVC3)。我有一个非常简单的 HTTP GET API,它返回 hello world。
来电:
http://localhost/helloworld
回报:
Hello World!
这可以在浏览器上完美运行。但是,当我编写一个尝试使用网络客户端提取此 URL 的应用程序时,我收到以下错误:
{"Unable to read data from the transport connection: The connection was closed."}
我的代码如下
WebClient web = new WebClient();
var response = web.DownloadString("http://localhost/helloworld");
我的 IIS 设置如下
我应该看什么?我已经在这几个小时了,我已经没有选择尝试了!任何帮助将不胜感激!
谢谢。