One of the most challenging aspects of creating a disaster recovery environment was having a quick failover to a website that exists in another datacenter. These failover instances usually contained stale code, the hardware for the environment was expensive and rarely, if ever utilized and when we tried to failover to the DR it rarely […]
Read More →Archive for May, 2014
Configure Application Request Routing (ARR) with Client Certificates
The kind of Client Certificate I use most is stored electronically on a chip located on the back of my id badge. There is a card reader in my PC that can access these certificates, which are protected by a pin and requested when I attempt to access a web site that is configured to […]
Read More →Using Network Tracing to debug System.Net based issues
I have worked on a number of cases where web services or URLs are called using a code segment like the below code snippet. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(URL); HttpWebResponse response = (HttpWebResponse)request.GetResponse(); The result of the GetResponse() method is some kind of error, for example a Timeout Exception, which is not always brought up to […]
Read More →How to get a static IP address for your Windows App Service Web App
11-AUG-2016: This article discusses INBOUND IPs, if you are looking for a single outbound IP address, Web Apps do not support that, instead there is a group of ~4 outgoing IP addresses described here. If you want your own set of outbound IPs, consider an ASE described here. 25-OCT-2017: If you delete an existing binding […]
Read More →My SSL Certificate doesn’t work on Azure Websites
In this post I will discuss 2 issues you might encounter when configuring an SSL certificate on Azure Web App. The certificate does not show in the drop-down. Browsing to your website over SSL / HTTPS you receive a security warning and the Azure Website wildcard certificate is delivered. ##The certificate does not show in […]
Read More →Enable System.Net tracing on Azure Websites (unable to connect to remote server)
It is becoming a common scenario that customers of Azure Web Apps are making requests to services hosted on other Azure IaaS or PaaS platforms, services not hosted on the Azure platform (on premise) and which use the System.Net class. For example, making a request from your code that uses either of the following code […]
Read More →Mapping a custom subdomain to an Azure Website
Mapping a custom domain name to your Azure Web App (Website) is based around a very important principle. The principle being that you need to add a CNAME with a HOST = awverify. This is how we confirm that you are indeed the owner of this domain. If you have access to the DNS file […]
Read More →Mapping a custom domain with a special character to an Azure Website
Azure Web Apps have not always supported the mapping of custom domain names with special characters in them, but it looks like it does now. I was able to map a custom domain with a special character to my Standard mode Azure Web App. To successfully configure an Azure Web App custom domain with a […]
Read More →