If your XML is not in the correct format, XSLT can also be used to
transform it into another variant of XML. For example, a client
application may expect to see:
<name>Eric Burke</name>
But the XML data on the web tier deals with the data as:
<firstName>Eric</firstName><lastName>Burke</lastName>
In this case, XSLT can be used to transform the XML into the
simplified format that the client expects.