gpt4 book ai didi

c# - .net core API Post 异常给出 NativeErrorCode 12175

转载 作者:行者123 更新时间:2023-12-01 17:41:59 26 4
gpt4 key购买 nike

对于下面的代码,它在调用时捕获 HttpRequestException/System.Net.Http.WinHttpException

异常状态:

NativeErrorCode 12175   
Message "A security error occurred"

- e {System.Net.Http.HttpRequestException: An error occurred while sending the request. ---> System.Net.Http.WinHttpException: A security error occurred
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult()
at System.Net.Http.WinHttpHandler.<StartRequest>d__105.MoveNext()
--- End of inner exception stack trace ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at System.Runtime.CompilerServices.ConfiguredTaskAwaitable`1.ConfiguredTaskAwaiter.GetResult()
at System.Net.Http.HttpClient.<FinishSendAsync>d__58.MoveNext()
--- End of stack trace from previous location where exception was thrown ---
at System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
at System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task)
at System.Runtime.CompilerServices.TaskAwaiter`1.GetResult()
at Controllers.Controller.<Get>d__0.MoveNext()

但是在相同的端点、资源、 header 和正文上使用 Postman,我得到了 200 回复。

POST /account/ HTTP/1.1
Host: test-org.com
X-HTTP-Method-Override: GET
Content-Type: application/xml
Cache-Control: no-cache
Postman-Token: ce565d1a-bfb7-0961-ffd7-d279b90e97c5

<?xml version="1.0" encoding="UTF-8"?>
<accountMessage xmlns="http://sdfssd
........
</accountMessage>
<小时/>

当我在 google 上搜索 NativeErrorCode 12175 .NET 时,我发现了以下内容: https://msdn.microsoft.com/en-us/library/windows/desktop/aa383770(v=vs.85).aspx

ERROR_WINHTTP_SECURE_FAILURE
12175
One or more errors were found in the Secure Sockets Layer (SSL) certificate sent by the server. To determine what type of error was encountered, check for a WINHTTP_CALLBACK_STATUS_SECURE_FAILURE notification in a status callback function. For more information, see WINHTTP_STATUS_CALLBACK.

损坏的代码:

// GET: api/Accounts
[HttpGet]
public async Task<IActionResult> Get()
{
try
{
using (var client = new HttpClient())
{
try
{
client.BaseAddress = new Uri("https://test-org.com/");
HttpRequestMessage request = new HttpRequestMessage(HttpMethod.Post, "account");
request.Content = new StringContent("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\r\n<accountMessage xml...</accountMessage>",Encoding.UTF8,"application/xml");

request.Headers.Add("X-HTTP-Method-Override", "GET");
var response = await client.SendAsync(request);

response.EnsureSuccessStatusCode();
var stringResponse = await response.Content.ReadAsStringAsync();
var posts = JsonConvert.DeserializeObject<IEnumerable<Post>>(stringResponse);

if (posts == null) return NotFound($"Posts were not found");
return Ok(posts);
}
catch (HttpRequestException e)
{
Console.WriteLine($"Request exception: {e.Message}");
}
}
}
catch (Exception)
{

}
return BadRequest();
}

最佳答案

我与服务器/服务的所有者进行了交谈。他们正在提供一项全新的服务,该服务目前使用的是自签名证书。在服务器/服务使用可以通过证书颁发机构验证的真实证书之前,我将在代码中绕过证书验证:

            using (var httpClientHandler = new HttpClientHandler())
{

httpClientHandler.ServerCertificateCustomValidationCallback = (message, cert, chain, errors) => { return true; };
using (var client = new HttpClient(httpClientHandler))
{
try
{

client.BaseAddress = new Uri("https://test-org.com/");

关于c# - .net core API Post 异常给出 NativeErrorCode 12175,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43265186/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com