hi
It is only related to the hub class and has nothing to do with the blazor page.
It is not possible to use it on specific blazor page
hi
Yes, You can try to set this option for a specified hub.
services.AddSignalR().AddHubOptions<YourHub>(options =>
{
options.MaximumReceiveMessageSize = 0;
});
hi
The code seems to be fine, can you share a simple project to reproduce the problem? This way I can debug locally to troubleshoot the problem.
liming.ma@volosoft.com
hi
This may be a security risk.
You can change the TokenController.Password behavior to achieve it.
https://github.com/abpframework/abp/blob/dev/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/Controllers/TokenController.Password.cs#L372-L377
https://github.com/abpframework/abp/blob/dev/modules/openiddict/src/Volo.Abp.OpenIddict.AspNetCore/Volo/Abp/OpenIddict/Controllers/TokenController.Password.cs#L149
hi
when we try to retrieve data from the application project, the "Current User" is not authenticated.
Please share the full logs of AuthServer and API applications.
liming.ma@volosoft.com
Thanks.
hi
The CancellationToken of blazor server comes from HttpContext.RequestAborted.
But it won't work, because we'll use signalR to communication.
ASP NET Core does not support CancellationToken in blazor server either
https://github.com/dotnet/aspnetcore/issues/11542
hi
The permisson option works in roles but not in users page. Even if I create a new project with abp suite it doesn't work
How can I reproduce this? Can you share the steps? Thanks.
hi
Please check the issuer of your environment.ts
https://github.com/abpframework/abp/blob/dev/templates/app/angular/src/environments/environment.ts#L13
hi
How can I reproduce this in a new template project?
Can you share a minimal project? liming.ma@volosoft.com