I am using XSLT to transform some provisioning XML into a SOAP request. But I am having difficulties finding an approach that does not require full XPATH expressions and still generates valid SOAP XML.
Here is a simplified version of the provisioning XML.
<CreateOrder>
<client_info>
<name>John Doe</name>
<address>
<street1>1211 Lakeview Dr.</street1>
<city>New York</city>
<state>NY</state>
<country>USA</country>
<zip>12345</zip>
</address>
</client_info>
<subscriber_number>AAANNNDDDD</subscriber_number>
</CreateOrder>
And here is the simplified XSLT I am using.
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml" />
<xsl:template match="/">
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header/>
<soapenv:Body>
<DirectoryNumber><xsl:value-of select="CreateOrder/subscriber_number"/></DirectoryNumber>
<Locale>
<xsl:choose>
<xsl:when test="CreateOrder/client_info/address/country = 'USA'">
<xsl:text>English (US)</xsl:text>
</xsl:when>
<xsl:otherwise>
<xsl:text>User Defined 1</xsl:text>
</xsl:otherwise>
</xsl:choose>
</Locale>
</soapenv:Body>
</soapenv:Envelope>
</xsl:template>
</xsl:stylesheet>
This generates the following XML output - which is what I expected / want. [Note that I had to pretty printed this - my output is actually just a single line wth no line breaks / indents.]
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
<soapenv:Header/>
<soapenv:Body>
<DirectoryNumber>
AAANNNDDDD
</DirectoryNumber>
<Locale>
English (US)
</Locale>
</soapenv:Body>
</soapenv:Envelope>
By playing around, it appears that I need to use <xsl:template match="/"> to match the whole input document, or else I do not get the SOAP XML into the output. Is there some other way of generating a sequence of new XML from the XSLT?
But when the <xsl:template match="/"> is present, I can't nest other <xsl:template match=..."> elements (for example to match "address") and so have to use full XPATH node expressions (such as CreateOrder/client_info/address/country) in the tests. This works but is not particularly elegant, and is somewhat error prone for a real world longer example. Is there a better way of doing this?