質問

I would like to build a solution for SharePoint online. The solution should be able to automatically fire workflows.

Is it possible to deploy such a solution on O365? Do you need Microsoft Azure for this? What are the other requirements and constraints?

役に立ちましたか?

解決

You would have a few options, you could have a service in Azure that handles this. The advantage here is that you can deploy services in the same region as your tenant for fast performance.

Another option would be to create your timer job solution as a compiled executable and use a central server in your environment as a "scheduling hub". Here you would configure a windows scheduled task the runs your executable on your defined schedule.

You could combine the 2 options by having a windows server in Azure executing your executable on schedule.

In our scenario, we have a central server on prem that executes custom executables on schedule.

他のヒント

As far as I know, timer jobs are not allowed on O365. However, you can create Microsoft Azure WebJobs.

You can find a sample console application in the link below that will give you a good start on how to implement/deploy one:

https://msdn.microsoft.com/en-us/library/office/dn986826.aspx

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top