R
robert walker
hi all, can someone help me with this
I have xml file on
my web server (iplanet) and want to
to load them from a client (internet explorer)
and see the transformed xml in html
my xslt is billing_reports.xsl like this
=====================================
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xslutput method="html"/>
<xsl:template match="/">
......
=====================================
and my xml file looks like
=====================================
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet href="billing_reports.xsl" type="text/xsl"?>
<INVOICE INVOICE_TYPE="DRAFT">
.......
=====================================
when served to the the client, no transformation takes place
internet explorer client gives
"Invalid at the top level of the document. Error processing resource
..."
its well formed xml and there is no dtd, so I do not understand this
message,
and
mozilla yeieds the xml
as if it were a text file
XML Bible book states
There are three primary ways to transform XML documents into other
formats, such as HTML, with an XSLT style sheet:
1. The XML document and associated style sheet are both served to the
client (Web browser), which then transforms the document as specified
by the style sheet and presents it to the user.
..
..
..
..
how do I configure #1 so that this happens
thanks
I have xml file on
my web server (iplanet) and want to
to load them from a client (internet explorer)
and see the transformed xml in html
my xslt is billing_reports.xsl like this
=====================================
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xslutput method="html"/>
<xsl:template match="/">
......
=====================================
and my xml file looks like
=====================================
<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet href="billing_reports.xsl" type="text/xsl"?>
<INVOICE INVOICE_TYPE="DRAFT">
.......
=====================================
when served to the the client, no transformation takes place
internet explorer client gives
"Invalid at the top level of the document. Error processing resource
..."
its well formed xml and there is no dtd, so I do not understand this
message,
and
mozilla yeieds the xml
as if it were a text file
XML Bible book states
There are three primary ways to transform XML documents into other
formats, such as HTML, with an XSLT style sheet:
1. The XML document and associated style sheet are both served to the
client (Web browser), which then transforms the document as specified
by the style sheet and presents it to the user.
..
..
..
..
how do I configure #1 so that this happens
thanks