HttpClient PostAsync System.Net.Http.HttpRequestException: произошла ошибка при отправке запроса

#c# #asp.net-web-api #http-post #httpclient

#c# #asp.net-web-api #http-post #httpclient

Вопрос:

Я работаю над простой консольной программой, которая использует веб-сервис (http). Будет отправлять строки json из текстового файла.

Протестировал приведенный ниже фрагмент на моем собственном API, который работал нормально.

Использовал postman для отправки запроса в api и получил ответ.

 static void Main(string[] args)
{
    //System.Net.ServicePointManager.SecurityProtocol = System.Net.SecurityProtocolType.Tls | System.Net.SecurityProtocolType.Tls11 | System.Net.SecurityProtocolType.Tls12;
    HttpClient client = new HttpClient(); //should be instatiated once per application

    do
    {
        try
        {
            Console.WriteLine("Enter Method:");
            string Method = Console.ReadLine();

            Console.WriteLine("Enter URI:");
            string uri = Console.ReadLine();

            if (("POST,PUT").Split(',').Contains(Method.ToUpper()))
            {
                Console.WriteLine("Enter FilePath:");

                string FilePath = Console.ReadLine();
                iLog.Log(iLog.EVENT, string.Format(" {0} | {1}", "File Path : <", FilePath   ">"));

                string str_content = (File.OpenText(@FilePath)).ReadToEnd();
                iLog.Log(iLog.EVENT, string.Format(" {0} | {1}", "String data : <", str_content   ">"));

                //StringContent class creates a formatted text appropriate for the http server/client communication
                StringContent httpContent = new StringContent(str_content, System.Text.Encoding.UTF8, "application/json");
                iLog.Log(iLog.EVENT, string.Format("1")); //trace

                try
                {
                    //Some risky client call that will call parallell code / async /TPL or in some way cause an AggregateException 
                    var postTask = client.PostAsync(uri, httpContent);
                    iLog.Log(iLog.EVENT, string.Format("2")); //trace

                    postTask.Wait();
                    iLog.Log(iLog.EVENT, string.Format("3")); //trace

                    //gets the response back from the API service
                    HttpResponseMessage result = postTask.Resu<
                    iLog.Log(iLog.EVENT, string.Format("4")); //trace

                    if (result.IsSuccessStatusCode)
                    {
                        iLog.Log(iLog.EVENT, string.Format("5")); //trace

                        //use this if you want a raw json string
                        var readTask = result.Content.ReadAsStringAsync();
                        iLog.Log(iLog.EVENT, string.Format("6")); //trace

                        readTask.Wait();
                        iLog.Log(iLog.EVENT, string.Format("7")); //trace

                        var str_Response = readTask.Result.ToString();
                        iLog.Log(iLog.EVENT, string.Format("8")); //trace
                        
                        Console.WriteLine("WebService Response : n<"   str_Response   ">");
                        iLog.Log(iLog.EVENT, string.Format(" {0} | {1}", "WebService Response : <", str_Response   ">"));
                    }
                    else
                    {
                        Console.WriteLine("Status Code = "   result.StatusCode);
                        iLog.Log(iLog.EVENT, string.Format(" {0} | {1}", "StatusCode", result.StatusCode));
                        iLog.Log(iLog.EVENT, string.Format("9")); //trace
                    }

                }
                catch (AggregateException err)
                {
                    foreach (var errInner in err.InnerExceptions)
                    {
                        iLog.Log(iLog.ERROR, string.Format(errInner.ToString())); //trace                                
                    }
                }

            }
        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message.ToString());
            iLog.Log(iLog.EVENT, string.Format("{0} | {1}", "Exception", ex.Message.ToString()));
            iLog.Log(iLog.EVENT, string.Format("10")); //trace
        }
        iLog.Log(iLog.EVENT, string.Format("{0} {1}", "END", "----------------------------"   "n"));
        Console.WriteLine("Do you want to continue?");
    } while (Console.ReadLine().ToUpper() == "Y");

}
 

Возвращена ошибка:

System.Net.Http.HttpRequestException: при отправке запроса произошла ошибка. —> System.Net.WebException: базовое соединение было закрыто: соединение было неожиданно закрыто. в System.Net.HttpWebRequest.EndGetRequestStream(IAsyncResult AsyncResult, TransportContextamp; context) в System.Net.Http.HttpClientHandler.GetRequestStreamCallback(IAsyncResult ar) — Конец трассировки стека внутренних исключений —

Комментарии:

1. В Postman вы используете POST или PUT?

2. использовался post

3. Я не знаю, является ли этот комментарий грубым или нет. Но, пожалуйста, взгляните на соглашение об именовании для c # docs.microsoft.com/en-us/dotnet/csharp/programming-guide /… Это показывает, как вы уважаете зрителя

4. отмеченное исправит, все еще довольно новое.

5. На самом деле вы также можете изменить сигнатуру основного метода public static async Task Main(string[] args) , чтобы иметь возможность использовать async/await вместо .Wait/.Result

Ответ №1:

Привет смог заставить его работать, используя предложение Caius Jard об использовании добавления nuget restsharp и замене сгенерированным Postman кодом.