[xsl] apply-templates not working

Subject: [xsl] apply-templates not working
From: omprakash.v@xxxxxxxxxxxxx
Date: Wed, 19 Jan 2005 15:57:41 +0530
Hi all,

     I have generated a stylesheet from another stylesheet. Now when I try
to transform an xml file using the new stylesheet, the output document is
empty when viewed in browser. The view source reveals output as having been
generated only for the root template (person in this case)

I have narrowed down the cause to the apply-templates not getting called.
Here's my stylesheet. I had to rename the tags back to xsl in order to get
the tags to be recognised as xsl.

Regards,
Omprakash.V



<?xml version = '1.0' encoding = 'iso-8859-1'?>
<xsl:stylesheet version="1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema";
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>
   <xsl:template xmlns:x="http://www.w3.org"; match="person">
      <HTML xmlns:x="http://www.w3.org/1999/XSL/Transform";>
         <HEAD>
            <TITLE>XMS</TITLE>
            <script type="text/javascript" language="javascript">function
submitForm(pathStr, actionStr) { this.document.xmsForm.xpath.value =
pathStr; this.document.xmsForm.action.value = actionStr;
this.document.xmsForm.submit(); return true; }</script>
         </HEAD>
         <BODY>
     <some html here>
           <xsl:apply-templates xmlns:x="http://www.w3.org";>
                                    <xsl:with-param name="" select
="/person"/>
                                 </xsl:apply-templates>
                   <some more html here>
          </BODY>
</HTML>
<!-- templates below -->
</xsl:template>

  <xsl:template xmlns:x="http://www.w3.org"; match="name"/>
      </TR>
         </TD>
            <B>name</B>
       </TD>
   </TR>
        <xsl:template xmlns:x="http://www.w3.org"; match="phone"/>

other templates....





This e-Mail may contain proprietary and confidential information and is sent for the intended recipient(s) only. 
If by an addressing or transmission error this mail has been misdirected to you, you are requested to delete this mail immediately.
You are also hereby notified that any use, any form of reproduction, dissemination, copying, disclosure, modification,
distribution and/or publication of this e-mail message, contents or its attachment other than by its intended recipient/s is strictly prohibited.

Visit Us at http://www.polaris.co.in

Current Thread