XSL Pfad einfügen

luchs3

Erfahrenes Mitglied
Hi,

Ich erstelle ein XML Dokument mit DOM und möchte dieses nocht mit einem Stylesheet verknüpfen.
Transformation soll der Client machen.

Das bedeutet jetzt sieht es so aus:
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<catalog>
      <cd>
            <title>Empire Burlesque</title>
            <artist>Bob Dylan</artist>
            <country>USA</country>
            <company>Columbia</company>
            <price>10.90</price>
            <year>1985</year>
      </cd>
.
.
</catalog>
und nachher soll es so aussehen
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xsl" href="cdcatalog.xsl"?>
<catalog>
      <cd>
            <title>Empire Burlesque</title>
            <artist>Bob Dylan</artist>
            <country>USA</country>
            <company>Columbia</company>
            <price>10.90</price>
            <year>1985</year>
      </cd>
.
.
</catalog>
Ich finde da echt keine Lösung

Danke im vorraus
Niko
 
Zurück