This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

namespace and XPath question


I am trying to use this XSL:


<?xml version="1.0" ?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; 
version="1.0">
<xsl:output method="xml" version="1.0" indent="yes" encoding="UTF-8"/>

<xsl:template match="/">
<PO>
	<BuyerOrderNumber>
		<xsl:value-of select="//Order/OrderHeader/OrderNumber/BuyerOrderNumber"/>
	</BuyerOrderNumber>
</PO>
</xsl:template>
</xsl:stylesheet>


to translate this XML:


<?xml version="1.0" encoding="UTF-8"?>
<Order xmlns="XCBL30.sox">
  <OrderHeader >
    <OrderNumber>
      <BuyerOrderNumber>PO123</BuyerOrderNumber>
    </OrderNumber>
  </OrderHeader>
</Order>



However, I only get this (not able to get the value)



<?xml version="1.0" encoding="UTF-8"?>
<PO>
<BuyerOrderNumber></BuyerOrderNumber>
</PO>


Is there something wrong with my XSL?  Do I need to include the 
xmlns="XCBL30.sox" and how do I do that?

Thanks in advance.



_________________________________________________________________
Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]