Removing ns0: prefix from xml output from BizTalk/Logic app XSLT map

Introduction Xml, which stands for stands for EXtensible Markup Language was designed to describe data and to do that you use tags. It's basic purpose is to focus on what data is - self decsribing. And as we have a provision to add our own tags, it becomes Extensible. Having this properties makes it very suitable for defining a message (Records, elements and attributes) and exchange it across, also data can be stored in it and can be refered/updated as an when needed (most of the configurations are xml based). In case of where XML is involved in messaging, it becomes vital to have Namespace as it helps in avoiding element name clashes/conflicts. A Namespace is a set of unique names. Namespace is a mechanisms by which element and attribute name can be assigned to a group. The Namespace is identified by URI(Uniform Resource Identifiers). An XML instance may contain element or attribute names from more than one XML vocabulary. If each vocabulary is given a ...