Jeg får ingen værdi ud når jeg tester mit xsl dokument.
Min xml starter således<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="C:\Documents and Settings\obi\Desktop\OasisUblOrder1-0.xsl"?>
<Order xmlns="urn:oasis:names:specification:ubl:schema:xsd:Order-1.0" xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-1.0" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-1.0" xmlns:cur="urn:oasis:names:specification:ubl:schema:xsd:CurrencyCode-1.0" xmlns:res="urn:oasis:names:specification:ubl:schema:xsd:AcknowledgementResponseCode-1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="urn:oasis:names:specification:ubl:schema:xsd:Order-1.0 http://docs.oasis-open.org/ubl/cd-UBL-1.0/xsd/maindoc/UBL-Order-1.0.xsd">
<BuyersID>200500000109</BuyersID>
<cbc:IssueDate>2005-08-09</cbc:IssueDate>
<cbc:Note><![CDATA[en laaaaaaaaaaaaaaaaaang beskrivelse]]></cbc:Note>
<cbc:LineExtensionTotalAmount amountCurrencyID="DKK">120.00</cbc:LineExtensionTotalAmount>
<cac:BuyerParty>
Min xsl ser sådan ud. Men når jeg åbner min xml er siden bare blank. Hvorfor?
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns="urn:oasis:names:specification:ubl:schema:xsd:Order-1.0"
xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-1.0" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-1.0"
xmlns:cur="urn:oasis:names:specification:ubl:schema:xsd:CurrencyCode-1.0"
xmlns:res="urn:oasis:names:specification:ubl:schema:xsd:AcknowledgementResponseCode-1.0">
<xsl:template match="/">
<html>
<head>
<title></title>
</head>
<body><xsl:value-of select="/Order/cbc:Note"/></body>
</html>
</xsl:template>
</xsl:stylesheet>
