I would like to proudly announce the release and availability of my new Azure Solution Architect Complete Study Guide. The book contains over 700 pages of material relating to the skills and knowledge required to become a great Azure Solution Architect. The book is designed around the requirements for passing both the AZ-303 and AZ-304 […]
Read More →Tags: Azure
API Management APIM 404 Azure App Service Azure Function
There is perhaps another way to do this, but I wasn’t able to find any documentation about configuring an Azure App Service or Azure Function here. After I created the APIM and API hosted on App Service I received a HTTP/1.1 404 Not Found when I tried testing it from the APIM portal. Figure 1, […]
Read More →JSON is slow, deserialization, DeserializationObject
The expected latency when downloading anything from a server to a client should increase as the size of the file increases. Simply, the bigger the file the longer it takes to download. There is a common step when writing an API that returns a JSON formatted file, which is the deserialization of the data content […]
Read More →Azure Function keys, keys and more keys, regenerated and synced
A very important point you must understand when it comes to working with Azure Functions is that that product is tightly bound to an Azure Storage account. You see, Azure Functions is a compute offering, when you provision that you are getting some CPU, some memory and a host to run the code on. The […]
Read More →Securing an Azure App Service or Azure Function PaaS
A common topic I would like to call out which I see in regards to security has to do with endpoints. I kind of want to call those endpoints “potentially vulnerable attack vectors”. I am a bit nervous writing “vulnerable” because the endpoints I mention here are secure, which is why I also called out […]
Read More →Consumption vs. Runtime Scaling in Azure Functions
Technical terminology is its own language. If I speak German to a person who doesn’t understand the words I am saying, it would be the same as saying “hey, I was working on a runtime scaling issue yesterday and it was crazy awesome.” You might get the point that I was working on a runtime […]
Read More →FAILED TO INITIALIZE RUN FROM PACKAGE.txt
I was doing some deployments to an Azure Function and found this text file in my d:\home\site\wwwroot directory. This can happen if you are trying to run an Azure Function from package, which is discussed here. Real fast, the way you get this to happen is by making a deployment, then after the deployment is […]
Read More →The decoupling of software solutions using some Azure products and features
I am a fan of decoupling the different components of a transaction to the point where is makes sense. What does decoupling mean? When I first started coding and building IT solutions, I can’t say the idea of decoupling existed at all. When I created an order entry system using Active Server Pages (ASP) and […]
Read More →VNET connection between Azure Function or App Service stops working – Service Association Links
I have this Azure Function that is integrated with an Azure Virtual Network, using Regional integration as shown in Figure 1. Where Regional VNET Integration is ARM based and the resources are located in the same Azure region. The other type of VNET integration is uses the classic integration method or if you need to […]
Read More →WEBSITE_VNET_ROUTE_ALL and Azure Functions
This would apply to Azure App Services too. This is an interesting feature. To me it resembles or provides the ability to force tunnel. The implementations of forced tunneling I have seen have typically been configured using route tables. Where the route table is a matrix of IP addresses (see Figure 6) that instructs TCP […]
Read More →