Skip to main content

Deploying a Blazor Application on IIS

Introduction

In this article, we will understand how to deploy an ASP.NET Core hosted Blazor application with the help of IIS 10 on a Windows 10 machine. We will be using Visual Studio 2017 to publish the app and SQL Server 2014 to handle DB operations. We will also troubleshoot some of the common hosting issues for a Blazor application.

Prerequisites

  • Install IIS in your machine
  • Install URL Rewrite module from here

Please refer to my previous article Cascading DropDownList in Blazor Using EF Core to create the application that we will be deploying in this tutorial.

Installing .NET Core hosting bundle

Since we are going to deploy an ASP.NET Core hosted Blazor application, the first step is to install .NET Core hosting bundle in our machine.

Follow the below steps to download .NET Core hosting bundle:

Deploying a Blazor Application on IIS

 

  • On the .NET Core runtime download page , scroll down to Windows section, select the “Hosting Bundle Installer” link to download the .NET Core Hosting Bundle.

 

Deploying a Blazor Application on IIS

Once the download is finished, double click to start installing it. You can see a window similar to the one shown below:

Deploying a Blazor Application on IIS

Important Note

  1. .NET Core hosting bundle should be installed after installing IIS only. If you install.NET Core hosting bundle before installing IIS then you need to repair it after installing IIS so that it will update its dependencies for IIS.
  2. Restart the machine after installing .NET Core hosting bundle.

Publishing the Blazor application

Once .NET Core hosting bundle installation is successful and you have restarted your machine, open the Blazor application solution using VS 2017.

Right click on Server project of your solution and click publish. In this case it will be BlazorDDL.Server >> Publish

Deploying a Blazor Application on IIS

You will see a screen similar to below. Select Folder from left menu and provide a folder path. You can provide any folder path where you want to publish your app.

Deploying a Blazor Application on IIS

Click on publish. Visual Studio will start publishing your application. If there is no build errors then your application will be published successfully to the folder you have mentioned.

After the publishing is successful, we will move on to configure IIS.

Configuring IIS

Open IIS and right click on Sites >> Add Web Site.

An “Add Website” pop up box will open. Here we need to furnish details in three fields

  1. Site name: Put any name of your choice. Here I put “ankitsite”
  2. Physical Path: The path to the folder where you have published your application.
  3. Host name: This is the name we put in browser to access our application. We will put ankitsite.com for this demo.

Click on OK to create the website. Refer to the image below:

Deploying a Blazor Application on IIS

Next step is to configure the “Application Pool” for our site. The application pool name will be same as the “Site name” we have provided in last step. Therefore, in this case the application pool name will be “ankitsite”. Click to “Application Pools” from the left panel and double click on the pool “ankitsite”. It will open an “edit application pool” window. Select “No Managed Code” from the .NET CLR version dropdown. Refer to the image below:

Deploying a Blazor Application on IIS

 

Here is the whole process of configuring IIS explained in a gif image.

Deploying a Blazor Application on IIS

Configuring the DNS host

The last step is to configure our DNS host file.

Navigate to C:\Windows\System32\drivers\etc path in your machine and open the “hosts” file using any text editor.

Deploying a Blazor Application on IIS

We need to add the hostname that we provided in IIS against localhost IP address. Refer to the image below:

Deploying a Blazor Application on IIS

Hence, we have successfully hosted a Blazor application on IIS.

Execution Demo

Open any browser on your machine and enter the hostname you have configured. You can see that the application will open in the browser window.

Deploying a Blazor Application on IIS

Troubleshooting common hosting issues

In this section, we will look into some of the common problems that you can face while hosting a Blazor application.

  1. If you are unable to open the website and get a DNS not found error

Check if the hostname is configured correctly in host file. Make sure that your machine is not connected to any VPN server. Also, if you are using any Web proxy then disable it.

  1. HTTP Error 500.19 – Internal Server Error – The requested page cannot be accessed because the related configuration data for the page is invalid.

This error message is clear. The publish folder is inaccessible because of insufficient permissions. Grant Read permission to the IIS_IUSRS group on the publish folder so that it can access Web.config file.

  1. If the website is loading but data is not getting populated and you get a 500 Internal server error

Make sure that your connection string is in correct format. The user id that you have specified in your connection string should have db_datareader and db_datawriter permissions. If the issue persists then provide the user with db_owner permission.

  1. If the data is not getting populated and you get an “operation not allowed” exception

This issue generally appears when you try to do a PUT, POST or DELETE operation in your web API. To mitigate this issue we need to alter the IIS setup configuration.

Navigate to Control Panel >> Turn Windows feature on or off. Then navigate to Internet Information Services >> World Wide Web Services >> Common HTTP Features and uncheck the “WebDAV Publishing” option and click OK. Refer to the image below:

Deploying a Blazor Application on IIS

 

  1. “Failed to load <web API> : No ‘Access-Control-Allow-Origin’ header is present on the requested resource.

The cause of this error is that the client and the server of the application are not on the same port. The browser will restrict the application to make web API calls due to same-origin policy.

To resolve this issue you need to enable Cross-Origin Requests (CORS) in your application. Please refer to Microsoft documents on Enable Cross-Origin Requests (CORS) in ASP.NET Core.

  1. If you republish the application then do not forget to refresh your website as well as the application pool in IIS.

Conclusion

In this article, we learned how to deploy a Blazor application on IIS in windows machine. We also learned how to resolve some of the common hosting issues while deploying a Blazor application.

Get my book Blazor Quick Start Guide to learn more about Blazor.

You can check my other articles on Blazor here 

You can also find this article at C# Corner.

See Also

Ankit Sharma

Full Stack Consultant | GDE for Angular | Microsoft MVP | Author | Speaker | Passionate Programmer

3 thoughts to “Deploying a Blazor Application on IIS”

  1. How can we do this with AWS Beanstalk? Please help, I have my application and have attempted to use the AWS Tool for Visual Studio, but I think something is wrong because I get a Method Not Allowed error.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.