Skip to end of banner
Go to start of banner

WebJobs Template For Azure

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

WebJobs enables applications to run background tasks in the same instance as a web app. The Workflow Studio has four new types of templates based on triggers for the Azure WebJobs. Please consider the description below to choose the appropriate template,

  • Queue Trigger – The Queue trigger starts the WebJob when a new message is received on a queue.

  • Timer Trigger – This trigger will start the WebJob based on the timer (Timestamp/CRON) value.

  • Blob Trigger – Blob Trigger will invoke the WebJob when a file is uploaded to the blob container.

  • Continuous – This web job will be manually invoked while starting the application and runs continuously.

Queue Trigger

Please follow the steps below to create a Web Job based on a Queue Trigger.

  1. Right-click on the package folder you want to create the Web Job. Click on New Extension or Library → Azure Services .Net 6.0

  2. Open the properties window, and select AzWebJob_QueueTrigger in the ServiceType property.

  3. Save the Web Job.

  4. Double click the job in the Solution Explorer to load it into Visual Studio.

  5. Open the Appsettings.Json and update the storage and queue values

    1. AzureWebJobsStorage:

    2. QueueName:

  6. The MyWebJobs.cs file has a default method ProcessQueueMessageAsync which invokes whenever a message is received in the queue. By default, it has the code to log a test message.

  7. Click on build or follow the instructions https://dotnetworkflow.jira.com/wiki/spaces/EDGV21/pages/1606357003/Deployment+Overview#Deploy-to-a-local-folder to deploy the Web Jobs files into a package. You can find the zip of the Web Job inside ..\EmpowerID\WFS\_microservices folder. Look for the zip with the name of the WebJob you created.

  8. Open the Azure portal and navigate to the App Service.

  9. Update the Queue Name in the Application Settings for the App.

    1. Click on Configuration Menu

    2. Click on the Application Settings tab and edit the value for QueueName. Make sure you set the exact value of the key to the value you used in Appsettings.json on step #5.

  10. Click on the WebJobs menu and then the Add ➕ button.

  11. Provide the necessary details for the Job and Click on the Ok to save the WebJob.

    1. Name: Identifier for the WebJob.

    2. File Upload: Deployment files for the WebJob. Choose the zip file you generated by building your project in step #7.

    3. Type: Select job type is ‘Triggered.’

  12. After seeing the success message of saving the job, click on the Run button to test it.

  13. Now navigate to the Queue you just created and add Message Text. Click the Ok button to save the message.

  14. Open the Job in the browser & navigate to Logs. You can find the configured message of the previous step in the logs, indicating that you have successfully created a Queue Trigger WebJob.

  • No labels