Метод HttpClient PostAsync генерирует исключение агрегирования - PullRequest
0 голосов
/ 31 января 2019

Я хотел бы использовать клиентский класс http для вызова метода контроллера api, а метод PostAsync выдал Aggregate Exception.Я попытался написать асинхронный метод, который вызывает PostAsync, и попробовать метод ContinueWith, но ни один из них не работает.Вот код:

class Program
{
    private const string apiPath = @"http://localhost:51140";
    private const string param = "/Home/savedocumenttoPath?folderPath=string";

    static void Main(string[] args)
    {
        HttpClient client = new HttpClient();
        client.BaseAddress = new Uri(apiPath);

        // Add an Accept header for JSON format.
        client.DefaultRequestHeaders.Accept.Add(
        new MediaTypeWithQualityHeaderValue("application/json"));

        HttpResponseMessage response = getBack(client);

        Console.WriteLine("{0} ({1})", (int)response.StatusCode, response.ReasonPhrase);

        client.Dispose();
        Console.ReadLine();
    }

    public static HttpResponseMessage getBack(HttpClient client)
    {
         return client.PostAsync(client.BaseAddress + param, null).GetAwaiter().GetResult();
    }
}

А вот контроллер, который я хочу назвать: (Я пробовал JsonResult, но это тоже не работает)

[HttpPost]
    public ActionResult saveDocumentToPath(string folderPath)
    {
        try
        {
            if (string.IsNullOrWhiteSpace(folderPath)) throw new NullReferenceException("Invalid Folder!");
            var fullPath = folderPath + "\\";
            if (!System.IO.Directory.Exists(fullPath))
            {
                return new HttpStatusCodeResult(HttpStatusCode.OK, "The specified directory not exists: \n" + fullPath);
            }

            var fileName = "ProjectList_Excel_" + DateTime.Now.Year + DateTime.Now.Month + DateTime.Now.Day;

            var filePathName = fullPath + fileName;
            if (System.IO.File.Exists(filePathName))
            {
                return new HttpStatusCodeResult(HttpStatusCode.OK, "The specified file already exists in the folder: \n" + fileName);
            }
            System.IO.File.WriteAllBytes(filePathName, BL.ExcelExport.GetProjectListExcel());

            return new HttpStatusCodeResult(HttpStatusCode.OK, "File Exported successfully!");
        }
        catch (Exception e)
        {
            return new HttpStatusCodeResult(HttpStatusCode.OK, "Error occured while saving the file" + e.Message);

        }
    }

1 Ответ

0 голосов
/ 31 января 2019

Вы можете изменить свой метод getBack следующим образом.Поскольку ваша конечная точка ожидает параметры простых типов (например, string или int), вам нужно заключить ее в FormUrlEncodedContent.Клавиша folderPath в Dictionary<string, string> соответствует имени параметра конечной точки.

public static HttpResponseMessage getBack(HttpClient client)
{
    var values = new Dictionary<string, string>
    {
        { "folderPath", @"C:\Temp" }
    };

    var content = new FormUrlEncodedContent(values);

    return client.PostAsync("Home/saveDocumentToPath", content).GetAwaiter().GetResult();
}

Вам даже не понадобится client.DefaultRequestHeaders.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json")); в вашем клиенте, так как выВы не публикуете JSON.

...