如何从Windows服务调用REST API

时间:2016-05-04 13:13:53

标签: c# windows-services

我正在尝试从Windows服务调用Rest API。我以前从未尝试过这个。我不知道为什么我无法拨打这个电话。

我的代码:

    string urlParameter = "posts/1";
    var client = new HttpClient();
    client.BaseAddress = new Uri("http://jsonplaceholder.typicode.com/");
    client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

    HttpResponseMessage response = client.GetAsync(urlParameter).Result;
    if (response.IsSuccessStatusCode)
    {
        var dataObj = response.Content.ReadAsAsync<IEnumerable<MyType>>().Result;
    }

我收到以下错误:

  • 消息:发送请求时发生错误。

  • 内部异常消息:{&#34;基础连接已关闭: 连接意外关闭。&#34;}

  • 内部异常堆栈跟踪 System.Net.HttpWebRequest.EndGetResponse(IAsyncResult asyncResult)
    在System.Net.Http.HttpClientHandler.GetResponseCallback(IAsyncResult) AR)

在以下行生成此错误:

HttpResponseMessage response = client.GetAsync(urlParameter).Result;

任何建议都将不胜感激。

编辑:(更新代码)

    string urlParameter = "posts/1";
    var client = new HttpClient();
    client.BaseAddress = new Uri("http://jsonplaceholder.typicode.com/");
    client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

    try
    {
        //var response = await client.GetAsync(urlParameter);
        var task = client.GetAsync(urlParameter);
        task.Wait();
        var response = task.Result;

        if (response.IsSuccessStatusCode)
        {
            var dataObj = response.Content.ReadAsAsync<IEnumerable<MyType>>().Result;
        }
    }
    catch (Exception ex)
    {
        string a = ex.Message;
        string b = ex.ToString();
    }

编辑2 :(仍然得到相同的错误)

private static async void TestAPI2()
{
    using (HttpClient client = new HttpClient())
    {
        client.DefaultRequestHeaders.Add("Get", "application/json");

        var response = await client.GetAsync("http://jsonplaceholder.typicode.com/posts/1");

        string context = await response.Content.ReadAsStringAsync();

    }
}

2 个答案:

答案 0 :(得分:1)

你的问题是......

var response = client.GetAsync(urlParameter);

...返回一个任务,你需要等待它先完成。

进行此调用的最简洁方法就是这样......

var response = await client.GetAsync(urlParameter);

...这要求代码在这样的异步方法中运行......

public async Task Foo() 
{
   var response = await client.GetAsync(urlParameter);
}

...或者您可以简单地告诉编译器等待使用...

var task = client.GetAsync(urlParameter);
task.Wait();

var response = task.Result;

...或者更紧凑的版本可能是使用这样的延续......

var result = await client.GetAsync(urlParameter)
    .ContinueWith(t => t.Result.Content.ReadAsAsync<IEnumerable<MyType>>())
    .Unwrap();

...这将执行请求然后当请求回来时异步解析它并解开任务时返回“内部结果”,因为此代码创建了一个任务&gt;&gt;而你只是想要IEnumerable所以等待解包的任务让你得到一个接一个地执行2个任务的结果:)

...我查看了您的特定代码并在新的控制台应用中运行,请将其更新为此...

 class MyType
        {
          public int userId { get; set; }
          public int id { get; set; }
          public string title { get; set; }
          public string body { get; set; }
        }

        static void TestAnApiCall()
        {
            string urlParameter = "posts/1";
            var client = new HttpClient();
            client.BaseAddress = new Uri("http://jsonplaceholder.typicode.com/");
            client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));

            try
            {
                //var response = await client.GetAsync(urlParameter);
                var task = client.GetAsync(urlParameter);
                task.Wait();
                var response = task.Result;

                if (response.IsSuccessStatusCode)
                {
                    var readTask = response.Content.ReadAsAsync<MyType>();
                    readTask.Wait();
                    var dataObj = readTask.Result;
                    Console.WriteLine(JsonConvert.SerializeObject(dataObj));
                }
            }
            catch (Exception ex)
            {
                string a = ex.Message;
                string b = ex.ToString();
            }
        }

答案 1 :(得分:0)

是的,它确实可以在“控制台应用程序”中运行,但是相同的代码在窗口服务中不起作用。 – John Doe

想对此评论进行回复。我确实遇到过类似的问题。 Rest API无法从Windows服务进行调用,但可以从控制台应用程序运行。 显示为

{System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: 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 80.228.241.59:443
   at System.Net.Sockets.Socket.InternalEndConnect(IAsyncResult asyncResult)
   at System.Net.Sockets.Socket.EndConnect(IAsyncResult asyncResult)
   at System.Net.ServicePoint.ConnectSocketInternal(Boolean connectFailure, Socket s4, Socket s6, Socket& socket, IPAddress& address, ConnectSocketState state, IAsyncResult asyncResult, Exception& exception)
   --- End of inner exception stack trace ---

由于防火墙问题,这一切都发生在我身上。最终能够使用RestClient中的代理设置解决此问题,并且有效。