Helloworld WebJob on Microsoft Azure – Web App

I watched this Channel9 Video here and decided to reproduce it in writing. The steps required to create this sample HelloWorld WebJob for hosting with a Web App are:

  • Create a Web Site and Console Application
  • Include the Console App into the Web Site
  • Deploy the Web Site to a Web App
  • Execute the WebJob and check the log file

Create a Web Site and Console Application

I started by creating an empty ASP.NET Empty Web Site, then added a new Console Application project to the solution. The website project is web-job and the Console application is web-job-helloworld. The result is shown in Figure 1.

image

Figure 1, setup Visual Studio projects for WebJob creation and deployment

The web-job-helloworld Console project contained the following code, shown in Listing 1.

Listing 1, WebJob helloworld source code

namespace web_job_helloworld
{
  class Program
  {
   static void Main(string[] args)
   {
    Console.WriteLine("WebJob HelloWorld");
   }
  }
}

Include the Console App into the Web Site

Then, I added an App_Data ASP.NET folder to my Website as shown in Figure 2.

image

Figure 2, adding an App_Data folder to a Web Site for supporting a WebJob

Once the App_Data folder is added to the project, create the directory structure shown in Figure 3, and then add the compiled web-job-helloworld executable and supporting files into it.

image

Figure 3, eb App (Web Site) WebJob directory structure

To add the executable, right-click the web-job-hellowworld directory -> Add -> Existing Item… -> Navigate to the location where the compiled web-job-hellowworld files exist and add them all. Figure 4 shows the files added in this example.

image

Figure 4, adding the EXE which I want to run as a WebJob on Azure

Once added, expand the web-job-hellowworld folder and the result should be similar to that illustrated in Figure 5.

image

Figure 5, Web Site (Web App) Visual Studio project containing a WebJob

Deploy the Web Site to a Web App

Deploy the Visual Studio Web Site to a Microsoft Azure Web App, as shown in Figure 6. Right-click on the web-job Web Site project -> Publish Web App which opens the wizard shown in Figure 6 that walks you through the deployment of the Web Site.

image

Figure 6, Deploy a Web App that includes a WebJob

After the Web App is successfully published, login to the Azure Management Console and see that it is there, as shown in Figure 7.

image

Figure 7, A HelloWorld WebJob deployed to a Web App

You can also check KUDU to see that the files have been deployed, as shown in Figure 8. I wrote a short article about what KUDU is here.

image

Figure 8, view a WebJob in SCM / KUDU

Execute the WebJob and check the log file Click the RUN ONCE button as shown previously in Figure 7. Once completed, the LAST RUN TIME and LAST RUN RESULT are updated as shown in Figure 9.

image

Figure 9, running a WebJob via the Azure Management Console

Hover over the LOGS URL and copy it to your clip board, enter the URL into a browser and SCM / KUDU is opened where you can view the log of the WebJob. The initial window shows you a list of recent job runs. Click on the job that you just executed and you should see a page similar to the one shown in Figure 10.

image

Figure 10, WebJob log files

UPDATE: You can also view the WebJobs using the Azure SDK from within Visual Studio, as shown in Figure 11.

image

Figure 11, Checking WebJobs via Visual Studio Azure SDK