Logic App

  • Azure Monitoring With and Without Nodinite

    Azure Monitoring With and Without Nodinite

    A while ago I created some videos highlighting how to monitor for 3 simple scenarios in Azure, using the Azure Portal and then using Nodinite: Playlist: Azure Monitoring with and without Nodinite The 3 Scenarios covered: Scenario 1 – Logic Application Failed Run Scenario 2 – Dead-Letters Scenario 3 – A disabled Logic Application Please…

    Know More

  • Let me Introduce Nodinite: An Integration Monitoring and Logging Tool Plus More

    Let me Introduce Nodinite: An Integration Monitoring and Logging Tool Plus More

    Nodinite is a tool that I have used for several years now to monitor and log data within my integration process flow. Nodinite also provides a central repository for your integrations. What I love about Nodinite is the total flexibility of what is installed and how it is installed. I believe it is also very…

    Know More

  • Bicep: Get the Trigger URL for a Consumption Logic App

      resource logicApp ‘Microsoft.Logic/workflows@2016-06-01’ = {   name: logicAppName   location: logicAppLocation   identity: {… }   properties: {…   } } output id         string = logicApp.id output version    string = logicApp.apiVersion output triggerUrl string = listCallbackURL(concat(logicApp.id, ‘/triggers/manual’), logicApp.apiVersion).value

    Know More

  • Logic App XML Transform Ignoring XSLT Output Attributes

    It seems Microsoft have still not fixed this one.  When using a XML Transform shape in a Logic App, the output XML always contains the XML declaration and the action shape ignores the omit-xml-declaration=”yes” attribute that is set in the XSLT: <xsl:output omit-xml-declaration=”yes” method=”xml” version=”1.0″ /> See: Remove XML Declaration in XML Transform (microsoft.com) And: Azure Integration…

    Know More

  • Logic App Deployment Failed Due to a Called Azure Function not being Started

    This is where I found the resolution: Encountered an error (Forbidden) from extensions API. – Adventures in Software (benoldfield.co.uk)

    Know More