我正在将现有的控制台应用迁移到 Web 应用。我正在控制器中进行 api 调用。以下代码在控制台应用中完美运行。但是在网络应用程序中,我在 var result = webClient.DownloadString(sourceUrl);
消息"unable to connect to remote server"
,内部异常显示{"A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond}System.Exception {System.Net.Sockets.SocketException}
我尝试将 url 作为 uri 对象传递,编辑 web.config 文件以包含默认凭据、服务点管理器等。我还尝试使用 async 和 await 使其异步。我真的不知道发生了什么。我在公司代理后面,但 api 调用在控制台应用程序和邮递员中完美运行。
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Http.Headers;
using System.Web.Http;
namespace webApp.Controllers
{
public class DataController : ApiController
{
private string sourceUrl="http://api.openweathermap.org/data/2.5/weather?zip=94040,us&appid=YOURID";
[Route("")]
public void GetAlldata()
{
var dataCall = DownloadData(sourceUrl);
}
private string DownloadData(string url)
{
try
{
ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12;
var webClient = new WebClient();
IWebProxy wp = WebRequest.DefaultWebProxy;
wp.Credentials = CredentialCache.DefaultCredentials;
webClient.Proxy = wp;
var result = webClient.DownloadString(sourceUrl);
return result;
}
catch (Exception ex)
{
return ex.Message;
}
}
}
}
值得一提的是,在我的家庭网络中尝试了上述代码并且它起作用后,我确定问题是一个代理问题。从我的代码中删除以下内容
IWebProxy wp = WebRequest.DefaultWebProxy;
wp.Credentials = CredentialCache.DefaultCredentials;
webClient.Proxy = wp;
并明确将以下内容添加到 web.config 修复了它。我不知道为什么 Web 应用程序不从代码中选取默认代理,但控制台应用程序会。对此行为的任何解释将不胜感激。
<system.net>
<defaultProxy>
<proxy usesystemdefault="False" proxyaddress="http://proxy.MYCOMPANY.com:8080" bypassonlocal="True" />
</defaultProxy>
</system.net>
解决方案(CMOE 的答案(不适用于您的情况。可能是控制台应用通过代理,但其他应用被防火墙丢弃。检查防火墙设置。