on 2020 Aug 20 11:01 PM
Hi All,
checking if its possible to send empty xml elements as for eg <ABC/> ( empty tag) on the target xml,
XML file generated from CPI MM does not include the empty tag when no value found on the source.
I understand that no value of sending empty xml element on the target
but have specific requirement to match the legacy xml file which includes empty elements . any idea or pointers ?
Thanks,
Request clarification before answering.
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="node()|@*"> <xsl:if test="normalize-space(string(.)) != ''"> <xsl:copy> <xsl:apply-templates select="node()|@*"/> </xsl:copy> </xsl:if> </xsl:template> </xsl:stylesheet>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 18 | |
| 7 | |
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.