Posts

Showing posts from July, 2017

Job on web

Job on web This topic links to documentation resources about how to use Azure WebJobs and the Azure WebJobs SDK. Azure WebJobs provide an easy way to run scripts or programs as background processes in the context of an  App Service web app, API app, or mobile app . You can upload and run an executable file such as as cmd, bat, exe (.NET), ps1, sh, PHP, by, js, and jar. These programs run as WebJobs on a schedule (cron) or continuously.  The purpose of the  WebJobs SDK  is to simplify the code you write for common tasks that a WebJob can perform, such as image processing, queue processing, RSS aggregation, file maintenance, and sending emails. The WebJobs SDK has built-in features for working with Azure Storage and Service Bus, for scheduling tasks and handling errors, and for many other common scenarios. Job details In addition, it's designed to be extensible, and there's an  open source repository for extensions .  Azure Functions (currently in preview) is based o