ASP NET Core in process hosting

preview_player
Показать описание
In this video we will discuss
1. In process hosting model in ASP.NET Core
2. What is Kestrel server

Text version of the video

Healthy diet is very important for both body and mind. We want to inspire you to cook and eat healthy. If you like Aarvi Kitchen recipes, please support by sharing, subscribing and liking.

Slides

ASP.NET Core Text Articles & Slides

ASP.NET Core Tutorial

Angular, JavaScript, jQuery, Dot Net & SQL Playlists
Рекомендации по теме
Комментарии
Автор

You explain in such detail, and make all of these resources available for free. You're a hero!

MM-tsjy
Автор

What happens for "out of process" now is that when you execute "dotnet run", it builds your project (if you've made any changes) and then executes <Your project folder>\bin\Debug\netcoreapp3.1\EmployeeManagement.exe, therefore the process name is EmployeeManagement.


To verify, follow these steps:
1. Execute "dotnet run" as instructed by venkat.
2. Open your Windows Task Manager, you will find EmployeeManagement.exe in there.
3. Right-click EmployeeManagement.exe and select "Open File Location". You will be brought to the foler where EmployeeManagement.exe sits in.
4. Ctrl-C out of dotnet run, and then manually execute EmployeeManagement.exe instead. Your will see the same messages shown in the console as when you executed "dotnet run", and then you can browse to localhost:5000 again.

conaxliu
Автор

thanks to Venkat I am studying for my future job using this tutorial

musandlala
Автор

I like the way you teach, thanks for putting so much efforts and record this course and make it available YouTube for free

DnyaneshWarade
Автор

I think you should explain the concept of In Process hosting model like where it is hosted, why it is introduced, what benefits it brings, how hosting is different from traditional .net framework etc.

BeLogicalAlways
Автор

Venkat is the King of .net.Thanks for .net core series.Pls upload quickly.Dont wanna wait :)

kazmirci
Автор

Sir, kindly make videos on azure functions version 2 also. Kindly explain in those videos, how to perform blob storage, table storage, and queues storage in azure storage explorer using azure functions version 2 with visual studio 2017. It would be far better if you perform a complete CRUD operation in serverless micro services. You are such an excellent instructor. One of my best teachers.
Thank you.

alihameed
Автор

I think your courses are very well structured and clear. I hope you will explain Razor Pages too, and not just MVC

leonvanrijswijk
Автор

Sir very easy way can explain


Thank for providing such a very informative ASP.net core video


Really sir for who can't afford purchase the video tutorials you can provide all videos free



I never forget your contribution to build my career.

ajaychoudhary
Автор

I am in till the end of the series. Very nice explanation. Many thanks.

salomonks-francais
Автор

Very complete tutorial! Thanks for this work!

raffaelrameh
Автор

Thank you very much sir for providing good content.

udaybsvs
Автор

Venkate I'm taking notes of all the things you say that you will explain them in the future video tutorials, we depend on you that you will deliver videos on them, on Angular you mentioned some future tutorials but seems you got busy and you didn't keep track, like the image upload in Angular, thanks lot for the good work, everyday I'm checking on your new videos

m.e
Автор

I noticed always in this series that it's like reading online documentation. It would be better if these videos are more on on-hand examples rather than explanation, we can read that online and we could understand that as we go along.. From the previous videos you mentioned many times 'I'll discuss in next videos' but in the next video I noticed you say that again so those things are getting stacked on us.

kulashaker
Автор

8:51 You said InProcess hosting model uses IIS or IIS Express but at this timestamp, you ran the app using CLI and we see it's using dotnet kestrel server, even though we had explicitly mentioned InProcess hosting model. Does that mean dotnet CLI uses Kestrel irrespective of the specified hosting model?

Akshay-Raut
Автор

in 10 years i have watched over 1000s of videos, but i found "kudvenkat" the best tutor in the world....

prateekbhardwaj
Автор

October 2020, Great Job and thank you again!

LarryPeteet
Автор

Hi Venkat it's really helpful for us ..thanks for these all videos

dattatreyakulkarni
Автор

Hi. My aspnet core webapp is printing iisexpress without putting that line

And when i run it with dotnet run the output is the name of the application, wich in my case is WebApplication2

lifeinloop
Автор

The IIS web server is an old web server which has been in use for over 15 years by .Net community but the issue that came is that some applications which were built in that period were not compatible with recent technology and web services could not be used on them. Another issue was that as internet servers advanced the IIS web servers were not cope up to the speed of the internet servers making it slow, so a need for a faster web server became necessary. To do this, the .Net community used its set of previous information to create the most simple and quickest server ever possible and thus kestrel web server was born.

Anyways, read the below. This might help.

--
Regards,
Sourav Basak
Namaste UI

souravbasak