Click here to Skip to main content
15,884,783 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: I am having problem creating a script to monitor Rest/API services. Pin
Richard Deeming26-Aug-21 21:28
mveRichard Deeming26-Aug-21 21:28 
GeneralRe: I am having problem creating a script to monitor Rest/API services. Pin
samflex27-Aug-21 3:21
samflex27-Aug-21 3:21 
GeneralRe: I am having problem creating a script to monitor Rest/API services. Pin
Richard Deeming27-Aug-21 4:10
mveRichard Deeming27-Aug-21 4:10 
General(SOLVED) Re: I am having problem creating a script to monitor Rest/API services. Pin
samflex27-Aug-21 5:27
samflex27-Aug-21 5:27 
QuestionBest, cheap, ASP.NET Core hosting? Pin
Chris Maunder4-Aug-21 8:36
cofounderChris Maunder4-Aug-21 8:36 
AnswerRe: Best, cheap, ASP.NET Core hosting? Pin
jkirkerx11-Aug-21 11:15
professionaljkirkerx11-Aug-21 11:15 
GeneralRe: Best, cheap, ASP.NET Core hosting? Pin
Chris Maunder11-Aug-21 11:56
cofounderChris Maunder11-Aug-21 11:56 
GeneralRe: Best, cheap, ASP.NET Core hosting? Pin
jkirkerx11-Aug-21 12:50
professionaljkirkerx11-Aug-21 12:50 
Yeh Chris,

But bare metal is not scalable nor very redundant. With these these new cloud services you can turn the knob up and down on bandwidth, how many CPU's, or how many nodes process your application. So If this is seasonal say a Xmas application that sells sausage and cheese, you can turn the dial to max on Black Friday and turn it back down in January. I think you can also filter out bots by country as well to reduce bandwidth. Or if you keep all the dials real low, you can slow everything down to keep your bill down at the same level. Compared to $30 a month for bare metal, I'd choose the latter.

Then you get into packaging your app at that .Net Core level, where you can put it in a container and just upload the whole container and off it goes. If it gets hacked you just replace the container with another copy. With Docker you can make a Linux container that serves up your .Net app and even include SQL Server for Linux, and anything else you need to run your app in a single container. This reduces your software licensing cost by going Linux versus choosing a Windows Server container. And Docker now supports the new container format as well, so it doesn't have to be a Docker container anymore. You can now even package or create a Kubernetes container that can spawn across a Kubernetes cluster that is scalable as well. You just set how many times max that you wish to scale out the app when busy and how many to idle back down to.

How you plan and package your app will have a huge effect on your hosting options and how much you end up paying for it. If you look at my website, it runs in a Linux Docker container using .Net Core support for Linux, with Linux MongoDB infused inside the container as well. This container has a builtin network to support protected communications between the app and MongoDB, and gets served up using Kestrel 2.0 (Http2 with builtin Certificate) that is infused as well. The container listens on a odd number port that is not port 80 or 443 to further secure the container. Finally, this container runs on a Dell Linux cluster of 3 servers that is configured for Kubernetes nodes on super fast SSD drives running Ubuntu Linux command line only. I didn't have the heart to toss out my hardware so I rebuilt it as a cloud service model to experiment with before I pay those high prices. Because of my final litigation with the BSA and Microsoft, we agreed upon me going open source from this point on.

I've been studying this technology for 4 years now, but have been rogue implementing it. After participating in 100's of programmer meetups, this is the consensus now of how to do it in Irvine CA. But very few people can actually do this scope of work.

Kind of strange that I'm sharing this with you, but I'm not sure what the scope of your friends project is, so it may have very simple requirements that your trying to keep at a very simple level yet use the latest versions of .Net 5 which is super cool. I know what you mean by Jurisdictions but sometimes you have to cross them or remain outside of them.
If it ain't broke don't fix it
Discover my world at jkirkerx.com

AnswerRe: Best, cheap, ASP.NET Core hosting? Pin
Deepak Vasudevan13-Sep-21 21:42
Deepak Vasudevan13-Sep-21 21:42 
GeneralRe: Best, cheap, ASP.NET Core hosting? Pin
Chris Maunder14-Sep-21 4:38
cofounderChris Maunder14-Sep-21 4:38 
AnswerRe: Best, cheap, ASP.NET Core hosting? Pin
Moo v This17-Nov-21 2:53
Moo v This17-Nov-21 2:53 
Questionhow to run default page as login page in web app blazor Pin
Member 1129177422-Jul-21 2:54
Member 1129177422-Jul-21 2:54 
Questionncaught ReferenceError:System is not defined at (index):18 dx.light.css:1 Failed to load resource:the server responded with a status of 404(Not Found) Pin
Member 146901009-Jul-21 7:15
Member 146901009-Jul-21 7:15 
AnswerRe: ncaught ReferenceError:System is not defined at (index):18 dx.light.css:1 Failed to load resource:the server responded with a status of 404(Not Found) Pin
SeeSharp29-Jul-21 7:38
SeeSharp29-Jul-21 7:38 
JokeEste site aceita link? Pin
Ronaldo Luis Gonçalves6-Jul-21 3:37
Ronaldo Luis Gonçalves6-Jul-21 3:37 
AnswerRe: Este site aceita link? Pin
SeeSharp29-Jul-21 8:05
SeeSharp29-Jul-21 8:05 
QuestionHow to Upgrade Publish website page in latest version at Visual Studio 2012 Pin
Robymon4-Jul-21 0:39
Robymon4-Jul-21 0:39 
AnswerRe: How to Upgrade Publish website page in latest version at Visual Studio 2012 Pin
Richard Deeming4-Jul-21 21:36
mveRichard Deeming4-Jul-21 21:36 
QuestionHTTPPOST of EditReport not comiting data to database Pin
Carl Cummings (Canada)2-Jul-21 17:34
professionalCarl Cummings (Canada)2-Jul-21 17:34 
AnswerRe: HTTPPOST of EditReport not comiting data to database Pin
Richard Deeming4-Jul-21 21:34
mveRichard Deeming4-Jul-21 21:34 
GeneralRe: HTTPPOST of EditReport not comiting data to database Pin
Carl Cummings (Canada)5-Jul-21 2:02
professionalCarl Cummings (Canada)5-Jul-21 2:02 
QuestionVisual Studio Freezes during build solution Pin
Robymon1-Jul-21 22:37
Robymon1-Jul-21 22:37 
AnswerRe: Visual Studio Freezes during build solution Pin
Richard Deeming1-Jul-21 23:15
mveRichard Deeming1-Jul-21 23:15 
AnswerRe: Visual Studio Freezes during build solution Pin
Deepak Vasudevan13-Sep-21 21:49
Deepak Vasudevan13-Sep-21 21:49 
QuestionASP.Net Core MVC - Validation Summary not working with bootstrap tabs and dynamically loaded content Pin
SeeSharp223-Jun-21 9:58
SeeSharp223-Jun-21 9:58 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.