Hi Walter,
Based on the console error reported, we suspect that the reported scenario occurs due to the less buffer size. Hence we suggest you to use 100MB or more over the SignalR connection in startup.cs page in your project to overcome the reported scenario. Please find the code snippet below for further reference.
Code Snippet:
|
Startup.cs:
using Syncfusion.Blazor;
namespace BlazorApplication
{
public class Startup
{
....
....
public void ConfigureServices(IServiceCollection services)
{
....
....
services.AddSyncfusionBlazor();
services.AddSignalR(e => {
e.MaximumReceiveMessageSize = 1024000;
});
}
}
}
|
If you still face this issue. kindly revert us with more information which will be more helpful for further analysis and provide you the solution sooner.
Regards,
Srihari M