Giter VIP home page Giter VIP logo

Comments (7)

catalingavan avatar catalingavan commented on September 6, 2024 1

Thanks.
I will replicate the scenario on an .NET Core 3.0 app

from kisslog.sdk.

catalingavan avatar catalingavan commented on September 6, 2024 1

Hi @blogcraft,

The issue is caused, indeed, by some incompatibility between KissLog.AspNetCore and .NET Core 3.0.
I will create a package update with a fix, but this might take some time.

(More details about this can be found here: dotnet/aspnetcore#12505)

Meanwhile, I suggest a small workaround, just to keep the project running.

KissLog won't log the Request.InputStream value anymore, but it will not raise an exception.

Update Startup.cs ConfigureServices()

public class Startup
{
    public Startup(IConfiguration configuration)
    {
        Configuration = configuration;
    }

    public IConfiguration Configuration { get; }

    public void ConfigureServices(IServiceCollection services)
    {
        #region Temporary fix for KissLog .NET Core 3.0 issue
		
        Type type = typeof(KissLog.Internal.InternalHelpers);
        var field = type.GetField("InputStreamContentTypes", BindingFlags.Public | BindingFlags.Static);
        field.SetValue(null, new string[] { });
		
        #endregion
		
        services.AddSingleton<IHttpContextAccessor, HttpContextAccessor>();
        services.AddScoped<ILogger>((context) =>
		{
            return Logger.Factory.Get();
        });

        services.AddControllersWithViews();
    }
}

Please let me know if this worked for you.

from kisslog.sdk.

blogcraft avatar blogcraft commented on September 6, 2024 1

Thanks a lot, the workaround did help!

Looking forward to package update fix when it's available.

from kisslog.sdk.

catalingavan avatar catalingavan commented on September 6, 2024 1

Hi @blogcraft

The issue should be fixed now.

Please update the package to KissLog.AspNetCore 2.4.2

Let me know if everything is working properly (don't forget to remove the workaround 😊).

Thanks

from kisslog.sdk.

blogcraft avatar blogcraft commented on September 6, 2024 1

Flawless! It works like a charm! Thanks

from kisslog.sdk.

catalingavan avatar catalingavan commented on September 6, 2024

Hi @blogcraft,

I will investigate the issue, and I will come back with further details.
If possible, can you provide some details, please:

  1. The error happened after updating the KissLog.AspNetCore NuGet package on an existing application?

  2. Have you updated the application from targeting .NET Core 2.0 to .NET Core 3.0?

  3. Is this a brand new .NET Core 3.0 application, on which you are trying to install KissLog.AspNetCore NuGet

The error is related to 'Microsoft.AspNetCore.Http.Internal.BufferingHelper' type, which might not be available on .NET Core 3.0 anymore.

from kisslog.sdk.

blogcraft avatar blogcraft commented on September 6, 2024

Hi, thanks for the quick response.

The app Was originally working fine targeting .Net Core 2.2 and KissLog.AspNetCore "1.7.0"

After updating the App to .Net Core 3.0 the app started to fail.
Then I updated KissLog.AspNetCore to 2.4.0 to see if it could solve it, but didn't.

from kisslog.sdk.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.