xsl-list
[Top] [All Lists]

Re: [xsl] Namespaces best practice in XML

2006-04-04 08:43:21

The match="ppp" does not get invoked yet I have declared the default 
namespace to be the same namespace as <ppp> is in in the XML. Why does this 
happen?

as explained earlier in the thread, the default namespace declared with
xmlns=... in the stylesheet has _no_ effect on XPath expressions or XSLT
match patterns at all. In your stylesheet  match="ppp" means match ppp
in no-namespace but your source element is ppp in http://www.eeeeee.com.
In XSLT1 you would have to use
 match="x:ppp" 
but in XSLT2 you can set xpath-default-namespace="http://www.eeeeee.com";
to change the meaning of  match="ppp" to mean match ppp in the
http://www.eeeeee.com namespace.

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--