Member-only story
Hi there 😀! Today, let’s dive into an intriguing topic: how to convert XML to XML using a Liquid Template in Azure. After searching across the internet for solutions on XML to XML transformation in Azure, I discovered that Azure provides only below Liquid templates , those are :
I was pondering how to achieve XML-to-XML transformation, and finally, I discovered a solution! 😄
Let’s explore it together:
Prerequisites :
- Azure subscription
- Create Logic App
Step1 : To begin, I crafted a sample XML dataset along with a corresponding Liquid template.
XML file :
<?xml version="1.0" encoding="UTF-8"?>
<Products>
<Product>
<productname>iPhone</productname>
<productid>EL123</productid>
<productcategory>Electronics</productcategory>…