0

Is it possible to deploy a Webjob from another Webjob in Azure? I've read the documentation, it's all about manually instantiating a Webjob, or using CronJobs. I want, in a Webjob, deploy and run another Webjob with some parameters.

Bruno Caceiro
  • 6,179
  • 1
  • 19
  • 37

1 Answers1

1

Is it possible to deploy a Webjob from another Webjob in Azure? 

Yes, we could deploy a WebJob automatically also including WebJob way. We could deploy a WebJob using Kudu WebJob API. I test it with fiddler,it works correctly. The following is my details steps.

https://{userName}:{password}@{WebAppName}.scm.azurewebsites.net/api/zip/site/wwwroot/App_Data/jobs/{continuous or triggered}/{job name}/

1.Get the username, password info from the azure website profile

enter image description here

2.Send the http put request with header and attach the zip file in the request body

Content-Type: application/zip

Content-Disposition: attachement; filename=myfilename

enter image description here

3.Check from the azure portal that WebJob has been created correctly.

enter image description here

Tom Sun - MSFT
  • 22,436
  • 3
  • 23
  • 40