Cannot determine the organization name for this ‘dev.azure.com’ remote url

Whilst trying to set up Visual Studio to use a git repo hosted on Azure DevOps, we encountered this error. Cannot determine the organization name for this ‘dev.azure.com’ remote url. ensure the credential.usehttppath configuration value is set, or set the organization name as the user in the remote url ‘{org}@dev.azure.com’.

Missing log entries in Azure Functions

Recently, I went to investigate an issue in an Azure Function, and noticed that some entries I would have expected to be present were missing. This is related to differences between the default settings of Azure Functions and other App Services, and also differences between the structure of host.json (used by Azure Functions) and appsettings.json… Continue reading Missing log entries in Azure Functions

JSON schema generation from sample data in Azure Data Factory

While trying to write mapping within a Copy shape in Azure Data Factory, I hit a stumbling block with generated JSON schemas. The problem occurs when you generate a schema containing an array, and the first instance of that array happens to be empty in your sample data.

System.ArgumentNullException: Value cannot be null. Parameter name: key

Many of the in-built BizTalk adapters used WCF, including connections to Microsoft SQL Server, Oracle databases, and web services. BizTalk is very strict about supplying a SOAP Action header, and if you forget to specify it in the send port, you will get this particularly unhelpful error: System.ArgumentNullException: Value cannot be null. Parameter name: key

Testing BizTalk WCF End Points with Anonymous Authentication

Sometimes, because my life’s so exciting, I need to test an HTTP push into my local dev instance of BizTalk. In other words, I have a one-way receive port ready to consume an XML message into BizTalk through a WCF web service. The web service IIS components and schemas have been generated through BizTalk WCF… Continue reading Testing BizTalk WCF End Points with Anonymous Authentication