How to call a WebAPI from Windows Service

你。 提交于 2019-11-29 08:43:41

问题


I have an application written in Windows Service and this app need to make a call to a WebAPI written in Asp.Net MVC 4 WebAPi. this method in WebAPI return a DTO with primitive type, something like:

class ImportResultDTO {
   public bool Success { get; set; }
   public string[] Messages { get; set; }
}

and in my webapi

public ImportResultDTO Get(int clientId) {
   // process.. and create the dto result.
   return dto;
}

My question is, how can I call the webApi from the Windows Service? I have my URL and value of parameter, but I don't know how to call and how to deserialize the xml result to the DTO.

Thank you


回答1:


You could use System.Net.Http.HttpClient. You will obviously need to edit the fake base address and request URI in the example below but this also shows a basic way to check the response status as well.

// Create an HttpClient instance
HttpClient client = new HttpClient();
client.BaseAddress = new Uri("http://localhost:8888/");

// Usage
HttpResponseMessage response = client.GetAsync("api/importresults/1").Result;
if (response.IsSuccessStatusCode)
{
    var dto = response.Content.ReadAsAsync<ImportResultDTO>().Result;
}
else
{
    Console.WriteLine("{0} ({1})", (int)response.StatusCode, response.ReasonPhrase);
}



回答2:


You can install this NuGet package Microsoft ASP.NET Web API Client Libraries to your Windows Service project.

Here is a simple code snippet demonstrating how to use HttpClient:

        var client = new HttpClient();
        var response = client.GetAsync(uriOfYourService).Result;
        var content = response.Content.ReadAsAsync<ImportResultDTO>().Result;

(I'm calling .Result() here for the sake of simplicity...)

For more sample of HttpClient, please check this out: List of ASP.NET Web API and HttpClient Samples.



来源:https://stackoverflow.com/questions/12942644/how-to-call-a-webapi-from-windows-service

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!