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

RE: element with namespace

Subject: RE: element with namespace
From: "Venkateshwar Bommineni" <vbommineni@xxxxxxxxxx>
Date: Mon, 30 Sep 2002 14:35:08 -0400
namespace in c
But even if i remove those and mention as <Test
xmlns="http://www.foo.com/namespace/v1">
I do get same blank output. How do I actually need to mention in XSL to
skip or match with particular namespace?

-----Original Message-----
From: Shaikh, Neelkamal (MED, Oracle)
[mailto:Neelkamal.Shaikh@xxxxxxxxxx]
Sent: Monday, September 30, 2002 1:56 PM
To: 'xsl-list@xxxxxxxxxxxxxxxxxxxxxx'
Subject: RE:  element with namespace


need to correct the "xsi:schemaLocation" value in the Input XML file :

<Test xmlns="http://www.foo.com/namespace/v1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.foo.com/namespace/v1
C:\schema\definition.xsd">

if your schema is available in "C:\schema\" , then why is
"http://www.foo.com/namespace/" being used in xsi:schemaLocation.


 
-----Original Message-----
From: Venkateshwar Bommineni [mailto:vbommineni@xxxxxxxxxx]
Sent: Monday, September 30, 2002 11:38 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject:  element with namespace


Hi all,
 I am having a problem while trying to match root element which has
namespace declaration.
 here is the test snippet i am trying ..


Input XML is:
-------------------------------------------------------
<?xml version="1.0"?>
<Test xmlns="http://www.foo.com/namespace/v1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.foo.com/namespace/v1
C:\schema\definition.xsd">
	<People>
		<Person>
			<FName>fname1</FName>
			<LName>lname1</LName>
		</Person>
		<Person>
			<FName>fname3</FName>
			<LName>lname3</LName>
		</Person>
	</People>
</Test>



Input XSL is:
---------------------------------------------------------------
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
	<Members>
		<xsl:apply-templates select="Test/People"/>
	</Members>
</xsl:template>

<xsl:template match="People">
	<xsl:for-each select="Person">
		<Member><xsl:value-of
select="concat(substring(LName,1,1),'.',FName)"/></Member>
	</xsl:for-each>
</xsl:template>
</xsl:stylesheet>


Output of above transformation results:
---------------------------------------------------------------
<?xml version="1.0" encoding="UTF-8"?>
<Members/>


And if remove the namespace declaration from my input xml it works fine.

So is that namespace declaration not allowed or is there any magic
property i need to set in XSL to ignore namespace declarations?

thanks in advance
Venkat


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

 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

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.