RE: [xsl] Match prefix

Subject: RE: [xsl] Match prefix
From: "Victor Weike Xin (Houston)" <Weike.Xin@xxxxxxxxxxxxxx>
Date: Thu, 30 Aug 2001 15:42:43 -0400
Thanks for your responce.
The problem was found just as you said.
The problem is that Project namespace prefix is not defined/refered to
either in the dtd or in the xml file.
Thanks

Victor


-----Original Message-----
From: DuCharme, Bob (LNG) [mailto:bob.ducharme@xxxxxxxxxxxxxx]
Sent: Thursday, August 30, 2001 11:59 AM
To: 'xsl-list@xxxxxxxxxxxxxxxxxxxxxx'
Subject: RE: [xsl] Match prefix


>How Can I match the Elements with prefix(e.g. Project:InvoiceNum) which are
>in xml file?
>if I use <xsl:value-of select="Project:InvoiceNum" /> in my xsl,  It
returns
>null value.

A prefix is an abbreviation that makes it easier to refer to a namespace. If
an XML document starts like this

  <whatever xmlns:blue="http://www.snee.com/namespace1";
            xmlns:red="http://www.snee.com/namespace1";>

then an XML processor should treat <blue:foo/> and <red:foo/> within that
whatever element the same way, because they're both foo elements from the
same namespace. So, it's not about matching elements with prefixes, but
about matching elements from particular namespaces.

There's more on this at http://www.xml.com/pub/a/2001/05/02/trxml.html, an
XML.com column I did on the topic (which is also an excerpt from my book).

Bob DuCharme            www.snee.com/bob             <bob@  
snee.com>      see http://www.snee.com/bob/xsltquickly for
info on new book "XSLT Quickly" from Manning Publications.

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread