does arr works in iis express

qqtf 0 Reputation points
2024-04-26T11:19:37.49+00:00

for a blazor with all render modes enables (a server and a wasm-project integrated in one solution) I need:

https://learn.microsoft.com/en-us/aspnet/core/blazor/host-and-deploy/server?view=aspnetcore-8.0

Can you do arr on iis express?

https://learn.microsoft.com/en-us/iis/extensions/introduction-to-iis-express/iis-express-overview

It says iis 7.0 or above, implying by definition, not iis express?

https://learn.microsoft.com/en-us/iis/extensions/installing-application-request-routing-arr/install-application-request-routing-version-2

Can you do, technically, a server farm with a single computer (I know it doesn't make sense)

Internet Information Services
Blazor
Blazor
A free and open-source web framework that enables developers to create web apps using C# and HTML being developed by Microsoft.
1,398 questions
{count} votes

1 answer

Sort by: Most helpful
  1. Bruce (SqlWork.com) 56,846 Reputation points
    2024-04-26T15:49:45.9933333+00:00

    It seems a design flaw to require sticky sessions with Blazor WASM.

    sticky session are implemented with a cookie by the load balancer. on a single server web farm there is no impact, as the load balancer always picks the same server for each request, so you can not detect if sticky sessions are honored.

    if you want to test sticky session on one server, you install IIS and ARR. install your blazor app twice using two different ports (create a new site for each). config the ARR url to use the two sites.

    0 comments No comments