[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: xsl namespace select elements

Subject: RE: xsl namespace select elements
From: "Haarman, Michael" <mhaarman@xxxxxxxxx>
Date: Wed, 18 Jan 2006 16:11:31 -0600
xsl namespace select
> From: Peter Ivan
> 
> I have a simple xsl to run.
> <?xml version="1.0" encoding="UTF-8"?>
> <DeliveryCALetter xmlns="http://input.sire.nl/" 
> xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
> <levering>
> <soort_bestand>RNE-CADO</soort_bestand>
> <aanmaak_datum>20060118</aanmaak_datum>
> <aanmaak_tijd>194838</aanmaak_tijd>
> <raboict_ob_klant>CADO1</raboict_ob_klant>
> <levering>
> <DeliveryCALetter>
> 
> I need to select soort_bestand  value but it is not selecting 
> the value
> how could i select it.

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,


-----------------------------------
Mike Haarman,
XSL Developer,
Internet Broadcasting Systems, Inc.

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.