imp links .net

http://www.compilemode.com/2015/09/crud-operations-in-aspnet-mvc-5.html



http://www.c-sharpcorner.com/UploadFile/a5470d/creating-and-deploying-microsoft-azure-webjobs/

Continuous jobs are monitored, and if they exit they are re-executed. In this way they act more like "services" in your local machine. There is a module that monitors and keeps your app working. Always-ON is a feature that will help your site stay alive and hence, your webjobs to continuously run.
Scheduler is used to trigger the webjobs. It uses the scheduler user account (not the back-end account). This way you can move out of the free tier for scheduler, sign up to higher tiers to suit your needs. But essentially, all the scheduler is doing is hitting an https endpoint (which is public, but required your auth).
Triggered jobs (scheduled and on demand) are invoked by an https call. These calls are load balanced - much in the same way that a web app with many instances is load balanced. Continuous jobs run concurrently by default, but can be set to be a singleton.




On top of my mind, I can think of few use cases for WebJobs that comes naturally with internet of things as noted below.

Use Cases:

1. Image Processing

2. Email scheduler

3. Twitter Scheduler

4. Notification & Alerts Scheduler

5. Order Processing

6. Batch Jobs (File Exchanges)





http://dotnetanalyst.com/FAQs/wcf






















http://asp.net-tutorials.com/
http://www.studytonight.com/cpp/cpp-and-oops-concepts.php








http://lawrence.ecorp.net/inet/samples/regexp-validate2.php




http://www.mysamplecode.com/2011/10/javascript-validate-input-text-field.html

Comments

Popular posts from this blog

Create Schema Using C# Asp .Net Dynamically.

How to set Transaction and Roll Back using Entity Framework in C# Code.

How to post image in blob using Windows Azure.