Mura CMS on Azure WebApps
In this post I will show how to run a Java App on Azure WebApps. I was tasked to find out if it was possible to run a site created in Mura CMS, which is a Java application, on Azure. Of course it is possible to run it on a…
In this post I will show how to run a Java App on Azure WebApps. I was tasked to find out if it was possible to run a site created in Mura CMS, which is a Java application, on Azure. Of course it is possible to run it on a…
This short post describes how you can have a scheduled Azure WebJob that runs an asynchrouns method. The problem with this scenario is that the WebJob, which is just a regular console application, cannot have an asynchronous Main method. So you need a way around that. Next to that you…