Я хотел бы использовать клиентский класс 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);
}
}