RE: [xsl] xsl namespace select elements

Subject: RE: [xsl] xsl namespace select elements
From: "Peter Ivan" <peter_ivan@xxxxxxxxxxx>
Date: Thu, 19 Jan 2006 04:17:33 +0530
Thaks mike again it worked
but i need to remove the name space from the output xml.The http://input.sire.nl/ is comming in the first tag.


peter
l

Your XML creates a default namespace for the document with this statement:

<DeliveryCALetter xmlns="http://input.sire.nl/";

In order to match or select element names in this namespace you'll need to bind it to a prefix in your stylesheet:

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
 xmlns:in="http://input.sire.nl/";
 version="1.0">

and then use it when addressing elements within the default namespace:

 <xsl:template match="//in:soort_bestand">
   <xsl:value-of select="text()"/>
 </xsl:template>


HTH,


_________________________________________________________________
Tuff to bluff! Get Abhishek before he gets you! Enter the contest http://utv.movie-talkies.com/bluffmaster/contest.html


Current Thread