0

我实际上是在尝试使用HTTPClient类通过 URL 获取数据。我通过 ajax 调用。但是,当获取响应时,它会从调试模式返回运行模式,并且没有任何反应。未检索到任何响应。下面是代码:

jQuery

$.ajax({
        type: "GET",
        contentType: "application/json; charset=utf-8",
        url: "../../Services/AService.asmx/GetCompanyInformation",
        data: { id: JSON.stringify(id) },
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        async:true,
        success: function (res) {
            var options = JSON.parse(res.d);                   

        },
        error: function (errormsg) {
            $(".dropdown_SubDomainLoading").hide();
            toastr.options.timeOut = 7000;
            toastr.options.closeButton = true;
            toastr.error('Something Went Wrong');
        }
    });

网络方法调用

public static string CompanyDetails;

    [WebMethod]
    [ScriptMethod(UseHttpGet = true)]
    public string GetCompanyInformation(string id)
    {
        string authorizationKey = "Bearer 5cae498ef11f128363c1fbb2761bbab40ac0e2e5";
        string url = string.Empty;
        url = GetCompanyDetailsForApps(id);
        RunAsync(url).Wait();
        return CompanyDetails;
    }

 static async Task RunAsync(string Url)
    {
        string authorizationKey = "Bearer 5cae498ef11f128363c1fbb2761bbab40ac0e2e5";
        try
        {
            using (var client = new HttpClient())
            {
                client.BaseAddress = new Uri(Url);
                client.DefaultRequestHeaders.Accept.Clear();
                client.DefaultRequestHeaders.Add("Authorization", authorizationKey);
                HttpResponseMessage response = await client.GetAsync(Url);

                if (response.IsSuccessStatusCode)
                {
                    string content = await response.Content.ReadAsStringAsync();
                    //UrlMetricsResponse mozResonse = JsonConvert.DeserializeObject<UrlMetricsResponse>(content);
                    dynamic dynObj = JsonConvert.DeserializeObject(content);
                    CompanyDetails = JsonConvert.SerializeObject(dynObj);
                }

            }
        }
        catch (Exception ex)
        {
            Console.WriteLine("ERROR :" + ex.Message);
        }

    }

一旦调用了client.GetAsync()函数,它就会返回到运行模式,并且不会获取任何内容。难道我做错了什么。如何通过 url 检索响应?

4

2 回答 2

1

根据 判断[WebMethod],我猜您正在维护一个非常旧的 ASP.NET 应用程序。这里的问题是不兼容的库。旧的 ASP.NET 不支持 async/await 语义,HttpClient也不支持同步 HTTP 操作。

您最好的选择是将应用程序升级到支持异步控制器的更现代的东西,例如 ASP.NET Web API 或 ASP.NET Core。这样您就不必阻塞 HTTP 调用上的线程。但如果这不是一个选项,您需要将 HttpClient 换成一个真正支持同步/阻塞 HTTP 的库。看看WebRequest或 RestSharp。如果您继续使用 HttpClient 并且调用堆栈上的任何位置.Result都存在或.Wait()调用,那么您不仅会阻塞而且会导致死锁

我怎么强调都不为过:HttpClient 不支持同步 HTTP,所以如果你不能切换到更现代的 Web 框架,你必须切换到旧的 HTTP 库。

于 2018-02-22T13:28:33.713 回答
0

好吧,当我改变它时client.GetAsync()client.GetAsync().Result它起作用了。

于 2018-02-22T09:07:54.107 回答