Activities of "maliming"

hi

But what about the Dashboard Authorization?

Please share your module code that contains the UseAbpHangfireDashboard

Answer

hi

Please remove the __tenant from cookies.

Cookie: .AspNetCore.Culture=c%3Dtr%7Cuic%3Dtr; __tenant=39f7b3e6-b1a7-61af-ec9f-cc85613d2ec4

hi

Do you have the configuration below in your Blazor client project?

https://abp.io/docs/latest/modules/chat#blazor-webassembly-ui


Configure<ChatBlazorWebAssemblyOptions>(options =>
{
    options.SignalrUrl = builder.Configuration["RemoteServices:Chat:BaseUrl"];
});

hi

Your PreContribute has a problem please debug your app to see which variable is null

[WRN] Object reference not set to an instance of an object.
System.NullReferenceException: Object reference not set to an instance of an object.
   at HQSOFT.eBiz.CoreBackend.AuditLogging.ExtendedAuditLogContributor.PreContribute(AuditLogContributionContext context)
   at Volo.Abp.Auditing.AuditingHelper.ExecutePreContributors(AuditLogInfo auditLogInfo)
public override void PreContribute(AuditLogContributionContext context)
{
    var urlProp = context.AuditInfo.GetProperty("ScreenUrl");
    var url = context.GetHttpContext().Request.Headers["screen-url"].ToString();
    if (urlProp != null && string.IsNullOrEmpty(url))
    context.AuditInfo.SetProperty("ScreenUrl", url);
}

hi

Change your ChatMessageConsts as code below:

namespace Volo.Chat.Messages;

public static class ChatMessageConsts
{
    public static int MaxTextLength { get; set; } = 4 * 1024; //4KB
    public static int MinTextLength { get; set; } = 1;
}

hi

You can use Gmail or onedrive or https://wetransfer.com/

hi

Can you share a project that I can test?

liming.ma@volosoft.com

hi

[ERR] An unhandled exception has occurred while executing the request. Swashbuckle.AspNetCore.SwaggerGen.SwaggerGeneratorException: Failed to generate Operation for action - Volo.Chat.Conversations.ConversationController.SendMessageAsync (Volo.Chat.HttpApi). See inner exception ---> Swashbuckle.AspNetCore.SwaggerGen.SwaggerGeneratorException: Failed to generate schema for type - Volo.Chat.Messages.SendMessageInput. See inner exception ---> System.NullReferenceException: Object reference not set to an instance of an object.

We will fix this in 8.2.2, sorry for that.

If you are using the source code of Chat. You can fix this by change chat/src/Volo.Chat.Application.Contracts/Volo/Chat/Messages/SendMessageInput.cs

hi

First. Please test your app withour virtual directory .

Then set log level to Debug and share your application logs.

Thanks.

public class Program
{
    public async static Task<int> Main(string[] args)
    {
        Log.Logger = new LoggerConfiguration()
            .MinimumLevel.Debug()
            .MinimumLevel.Override("Microsoft.EntityFrameworkCore", LogEventLevel.Warning)
            .Enrich.FromLogContext()
            .WriteTo.Async(c => c.File("Logs/logs.txt"))
            .WriteTo.Async(c => c.Console())
            .CreateLogger();

: )

Showing 471 to 480 of 7737 entries
Made with ❤️ on ABP v9.0.0-preview Updated on September 23, 2024, 13:33