在ASP.NET MVC控制器中调用异步外部Web服务 [英] Call asynchronous external web service in asp.net MVC controller

查看:109
本文介绍了在ASP.NET MVC控制器中调用异步外部Web服务的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在Asp.net MVC控制器(GET方法)中,我正在调用外部Web服务-IP的地理位置-返回JSON数据以获取IP位置.如何使调用异步,因此在等待服务响应时堆栈可以继续.当GEO IP请求完成时,我希望能够对数据库进行更新.这是当前的同步代码:

In the Asp.net MVC controller (GET method) I am calling external web service - for geolocation of IP - returning json data for IP location. How can I make the call to be async, hence the stack can continue while waiting the response from the service. When the GEO IP request finished I want to be able to make update to the db. Here is the current sync code:

public ActionResult SelectFacility(int franchiseId, Guid? coachLoggingTimeStampId)
{
    //...
    string responseFromServer = Helpers.GetLocationByIPAddress(userIpAddress);

    HomeModels.GeoLocationModel myojb = new HomeModels.GeoLocationModel();

    if (!String.IsNullOrEmpty(responseFromServer))
    {
        JavaScriptSerializer js = new JavaScriptSerializer();
        myojb = (HomeModels.GeoLocationModel)js.Deserialize(responseFromServer, typeof(HomeModels.GeoLocationModel));

    }
    //...
}
public static string GetLocationByIPAddress(string ipAddress)
{
    Stream resStream = null;
    string responseFromServer = "";
    try
    {
        string url = GeoLocationPath.FreeGeoIP + ipAddress;
        HttpWebRequest request = (HttpWebRequest)WebRequest.Create(url);
        request.Method = "GET";
        HttpWebResponse response = (HttpWebResponse)request.GetResponse();
        resStream = response.GetResponseStream();
        StreamReader reader = new StreamReader(resStream);
        responseFromServer = reader.ReadToEnd();
        return responseFromServer;
    }
    catch (Exception ex)
    {
        //TODO handle this
    }
    finally
    {
        if (null != resStream)
        {
            resStream.Flush();
            resStream.Close();
        }
    }
    return responseFromServer;
}

任何建议-线程,AsyncTask吗?谢谢

Any suggestion - Thread, AsyncTask ? Thanks

推荐答案

使您的ASP.NET MVC控制器异步:

Make your ASP.NET MVC controller asynchronous:

http://www.asp.net/mvc/tutorials/mvc-4/using-asynchronous-methods-in-aspnet-mvc-4

然后使用 HttpClient.GetStringAsync await 其结果:

public async Task<ActionResult> SelectFacility(
    int franchiseId, Guid? coachLoggingTimeStampId)
{
    //...
    string responseFromServer = await Helpers.GetLocationByIPAddressAsync(
        userIpAddress);
    //...
}

public static async Task<string> GetLocationByIPAddress(string ipAddress)
{
    using (var httpClient = new HttpClient())
        return await httpClient.GetStringAsync(
            GeoLocationPath.FreeGeoIP + ipAddress);
}

这篇关于在ASP.NET MVC控制器中调用异步外部Web服务的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆