Hi, we are hosting web api controllers using kestrel (.net 7, c#, self hosted (not within IIS))
Within a controller we use a HttpClient to make a simple get request (https), but we are not seeing the request in fiddler everywhere (Http2 is activated in the settings and also the certificate stuff is activated).
The request to the controller (https & http2) is captured by fiddler, but not the httpclient call (the problem occurs on Win Server 2016), we are using the server name to call the controller (not localhost).
However if I create a console app, add the HttpClient call and start the console, fiddler does capture the call as expected.
I also tried netsh winhttp set proxy 127.0.0.1:8866 as admin, but that also doesn't work.
Any ideas?
Br