Lukas Zaiser
Lukas Zaiser
Any update on this, or any clarifiaction? For me it seems that this breaks a lot..
In a microservice world it's hard to tell who is the client and who is the server.. I used ClientTrace everywhere right now because it creates a nice hierarchy.. I...
I had to use AddPrimaryHttpMessageHandler for it to work.
This is what we use with Polly ```C# _unauthorizedPolicy = Policy .Handle(faex => faex.Errors?.Any(p => p.ErrorCode == "INVALID_SESSION_ID") == true) .RetryAsync(1, onRetry: async (exception, retryCount) => { _logger.LogWarning(exception, "Session expired,...
Just for reference, I did something like this: ```C# public class SalesforceJobRepository : ISalesforceJobRepository { private readonly ILogger _logger; private readonly SalesforceFaultHandler _salesforceFaultHandler; private readonly IResilientSalesforceClient _resilientSalesforceClient; private readonly HttpClient...
That would be great, the only way I got rid of "... does not exists in the current context" problem is @inherit/ing from a base class (e.g. TemplateBase) but this...
Yes this would be great
Microsoft.AspNetCore.Server.Kestrel.Core.BadHttpRequestException: Unexpected end of request content.
How can I filter this exception in logs, without ignoring other error messages from kestrel ?
Is there an update to this, as we also have problems with this issue.
@nssidhu did you find a solution? I use https://test.salesforce.com/ as login url but same error.