Click here to Skip to main content
15,920,828 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I had develop blazor hosted WASM application. when run blazor application server program.cs can not run client program.cs i.e server project serve the client static assets of www root folder only can not initialize the client . server can not bind with client. This is happened on firefox only . Remaing browsers are fine. what was issue server program.cs not connected with client.

C#
using Microsoft.AspNetCore.ResponseCompression;
 
var builder = WebApplication.CreateBuilder(args);
 
// Add services to the container.
 
builder.Services.AddControllersWithViews();
builder.Services.AddRazorPages();
//builder.Services.AddScoped<Root>();
 
 
var app = builder.Build();
 
// Configure the HTTP request pipeline.
if (app.Environment.IsDevelopment())
{
    app.UseWebAssemblyDebugging();
}
else
{
    app.UseExceptionHandler("/Error");
    // The default HSTS value is 30 days. You may want to change this for production scenarios, see https://aka.ms/aspnetcore-hsts.
    app.UseHsts();
}
 
app.UseHttpsRedirection();
 
app.UseBlazorFrameworkFiles();
app.UseStaticFiles();
 
app.UseRouting();
 
 
app.MapRazorPages();
app.MapControllers();
app.MapFallbackToFile("index.html");
 
app.Run();
please helpme. thank you

What I have tried:

hen run blazor application server program.cs can not run client program.cs
Posted

1 solution

I am able to run Blazor with Firefox with no problems. It is possible that the issue you are facing is that you have a plugin that is interfering. We can't possibly tell you what that plugin would be. Try opening your browser in incognito mode and attempt to load your site there.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900