This is my xml file:
<?xml version="1.0" encoding="windows-1250"?>
<CONTACTS>
<CONTACT>
<FirstName>Ford</FirstName>
<LastName>Pasteur</LastName>
<EMail>[email protected]</EMail>
</CONTACT>
<CONTACT>
<FirstName>Jack</FirstName>
<LastName>Sully</LastName>
<URL>http://www.facebook.com/profile.php?id=1000474277</URL>
</CONTACT>
<CONTACT>
<FirstName>Colombo</FirstName>
<LastName>Chao</LastName>
<EMail>[email protected]</EMail>
</CONTACT>
</CONTACTS>
I used below XSLT file for my fist version of xml output.
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="CONTACT">
<xsl:copy>
<Customer-ID>
<xsl:value-of select="generate-id(.)"/>
</Customer-ID>
<xsl:copy-of select="FirstName|LastName|URL"/>
<Facebook-ID>
<xsl:choose>
<xsl:when test="URL">
<xsl:value-of select="substring-after(URL,'?id=')"/>
</xsl:when>
<xsl:otherwise>
</xsl:otherwise>
</xsl:choose>
</Facebook-ID>
<EMAILS>
<xsl:apply-templates select="EMail"/>
</EMAILS>
</xsl:copy>
</xsl:template>
<xsl:template match="EMail">
<EMail>
<Type><xsl:value-of select="substring-before(
substring-after(.,'@'),
'.')"/>
</Type>
<Value><xsl:value-of select="."/></Value>
</EMail>
</xsl:template>
</xsl:stylesheet>
My first version of xml output from the above XSLT file:
<?xml version="1.0" encoding="windows-1250"?>
<CONTACTS>
<CONTACT>
<Customer-ID>N65539</Customer-ID>
<FirstName>Ford</FirstName>
<LastName>Pasteur</LastName>
<EMAILS>
<EMail>
<Type>yahoo</Type>
<Value>[email protected]</Value>
</EMail>
</EMAILS>
</CONTACT>
<CONTACT>
<Customer-ID>N65546</Customer-ID>
<FirstName>Jack</FirstName>
<LastName>Sully</LastName>
<URL>http://www.facebook.com/profile.php?id=1000474277</URL>
<Facebook-ID>1000474277</Facebook-ID>
<EMAILS/>
</CONTACT>
<CONTACT>
<Customer-ID>N65553</Customer-ID>
<FirstName>Colombo</FirstName>
<LastName>Chao</LastName>
<EMAILS>
<EMail>
<Type>liberto</Type>
<Value>[email protected]</Value>
</EMail>
</EMAILS>
</CONTACT>
</CONTACTS>
This is my second XSLT file:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="node()|@*">
<xsl:copy>
<xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
<xsl:template match="CONTACT">
<xsl:copy>
<Customer-ID>
<xsl:value-of select="Customer-ID"/>
</Customer-ID>
<FirstName>
<xsl:value-of select="FirstName"/>
</FirstName>
<LastName>
<xsl:value-of select="LastName"/>
</LastName>
<gmail>
<xsl:value-of select="EMAILS/EMail[Type='gmail']/Value"/>
</gmail>
<yahoo>
<xsl:value-of select="EMAILS/EMail[Type='yahoo']/Value"/>
</yahoo>
<liberto>
<xsl:value-of select="EMAILS/EMail[Type='liberto']/Value"/>
</liberto>
<URL>
<xsl:value-of select="URL"/>
</URL>
<Facebook-ID>
<xsl:value-of select="Facebook-ID"/>
</Facebook-ID>
</xsl:copy>
</xsl:template>
This is my final xml output from the 2nd XSLT file:
<?xml version="1.0" encoding="windows-1250"?>
<CONTACTS>
<CONTACT>
<Customer-ID>N65539</Customer-ID>
<FirstName>Ford</FirstName>
<LastName>Pasteur</LastName>
<gmail/>
<yahoo>[email protected]</yahoo>
<liberto/>
<URL/>
<Facebook-ID/>
</CONTACT>
<CONTACT>
<Customer-ID>N65546</Customer-ID>
<FirstName>Jack</FirstName>
<LastName>Sully</LastName>
<gmail/>
<yahoo/>
<liberto/>
<URL>http://www.facebook.com/profile.php?id=1000474277</URL>
<Facebook-ID>1000474277</Facebook-ID>
</CONTACT>
<CONTACT>
<Customer-ID>N65553</Customer-ID>
<FirstName>Colombo</FirstName>
<LastName>Chao</LastName>
<gmail/>
<yahoo/>
<liberto>[email protected]</liberto>
<URL/>
<Facebook-ID/>
</CONTACT>
</CONTACTS>
How do I merge these two XSLT files as a single XSLT file to get my final XML output.
how do i proceed with this? because there are two different xml files of similar type.
I'm using Eclipse Hellios run as -->XSL transformation to see the output.