472,342 Members | 1,462 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,342 software developers and data experts.

Web service throwing XML - XSLT transformation, how?

Hello,
I have sort of a big problem. I would really appreciate any help you
could give me.
I made a web service in C++ that throws XML to the client (browser).
But, the XSLT transormation (xml->html) doen't happen!

I have XSLT files for this, they work, I mean when I put the output of
the app as an XML file on some server, and make it use the XSLT files to
transform into HTML, it works, I get a HTML page.

The XSLT file is on a separate server, the XML is thrown 'inline'
so-to-speak, it's dumped directly on the client's socket. But as I say,
it doesn't render to HTML. How can I make this work? Can I throw an XSLT
file inline too? How do I do that?

Right now I throw the XML output to the client's socket with
Content-type: text/html

Of course I've tried throwing it with Content-type: application/xml but
that didn't ail anything.

Can anybody tell me what I need to do to make the client-side xslt
transformation happen, with this kind of set-up?

So, to summarize :

situation now:
1. Client's browser asks my web service a HTTP GET request.
2. My server dumps XML on the client's socket. (with the correct HTTP
headers etc)
3. My client gets the XML code, but the XSLT transformation (that's
specified in the XML code) does not happen!

how it should be:
3. The XSLT should happen and the client gets HTML on his browser.

Why doesn't this happen? I suspsect it ahs something to do with the MIME
type my web service throws at the client, but what?

Thanks so much for any help,

--
- gipsy boy
Jul 20 '05 #1
12 3086


gipsy boy wrote:

I made a web service in C++ that throws XML to the client (browser).
But, the XSLT transormation (xml->html) doen't happen!

I have XSLT files for this, they work, I mean when I put the output of
the app as an XML file on some server, and make it use the XSLT files to
transform into HTML, it works, I get a HTML page.

The XSLT file is on a separate server


That could be the problem, for security reasons a browser might not
apply a stylesheet from a different server. Mozilla for instance doesn't:
<http://www.mozilla.org/projects/xslt/faq.html>
I think with IE it depends on the configuration.
--

Martin Honnen
http://JavaScript.FAQTs.com/
Jul 20 '05 #2
Martin Honnen wrote:


gipsy boy wrote:

I made a web service in C++ that throws XML to the client (browser).
But, the XSLT transormation (xml->html) doen't happen!

I have XSLT files for this, they work, I mean when I put the output of
the app as an XML file on some server, and make it use the XSLT files
to transform into HTML, it works, I get a HTML page.

The XSLT file is on a separate server

That could be the problem, for security reasons a browser might not
apply a stylesheet from a different server. Mozilla for instance doesn't:
<http://www.mozilla.org/projects/xslt/faq.html>
I think with IE it depends on the configuration.


Okay, thanks.
Can I provide the xslt transformation file *WITH* the xml code?
I tried just doing an <xsl:stylesheet..> xsl code </xsl:stylesheet>
inside the XML code, but it was treated as junk.
Does it *have* to be in a different file?

--
- gipsy boy
Jul 20 '05 #3
gipsy boy wrote:
Martin Honnen wrote:


gipsy boy wrote:

I made a web service in C++ that throws XML to the client (browser).
But, the XSLT transormation (xml->html) doen't happen!

I have XSLT files for this, they work, I mean when I put the output
of the app as an XML file on some server, and make it use the XSLT
files to transform into HTML, it works, I get a HTML page.

The XSLT file is on a separate server


That could be the problem, for security reasons a browser might not
apply a stylesheet from a different server. Mozilla for instance doesn't:
<http://www.mozilla.org/projects/xslt/faq.html>
I think with IE it depends on the configuration.

Okay, thanks.
Can I provide the xslt transformation file *WITH* the xml code?
I tried just doing an <xsl:stylesheet..> xsl code </xsl:stylesheet>
inside the XML code, but it was treated as junk.
Does it *have* to be in a different file?


I foudn out how to do this now, but:

XML Parsing Error: junk after document element
Location: http://localhost:3232/
Line Number 128, Column 1:<APPLICATION
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
Any idea why? this is the literal code :

<?xml version="1.0" encoding="ISO8859-1"?>

<?xml-stylesheet type="text/xsl" href="#xslt"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0" id="#xslt">
<xsl:import href="#xsd"/>
<xsl:output method="html" indent="yes" doctype-public="-//W3C//DTD HTML
4.01 Transitional//EN"
doctype-system="http://www.w3.org/TR/html4/loose.dtd" />
<xsl:template match="xsl:stylesheet">
<!-- ignore -->
</xsl:template>
<xsl:template match="APPLICATION">
<HTML>
<HEAD>
<TITLE>joesgarage</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"/>
</HEAD>

<BODY BGCOLOR="#DEF0EC" LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0"
MARGINHEIGHT="0"
style="color:#000000;font-family:Trebuchet,Verdana;font-size:11px">
<TABLE WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0">
<TR height="100">
<TD COLSPAN="4" bgcolor="#FFFFFF">
<IMG SRC="images/joesgarage.png" WIDTH="321" HEIGHT="100" ALT=""/></TD>
<TD bgcolor="#FFFFFF" width="100%">
<IMG SRC="images/bannerstretch.png" WIDTH="100%" HEIGHT="100"
ALT=""/></TD>
<TD bgcolor="#FFFFFF">
<IMG SRC="images/bannerright.png" WIDTH="432" HEIGHT="100" ALT=""/></TD>
</TR>

<TR height="32">
<TD width="5" bgcolor="#FFFFFF"></TD>
<TD bgcolor="#FFFFFF"><A HREF="browse_catalog_html.asp"><IMG
SRC="images/browsebutton.png" WIDTH="74" HEIGHT="32" ALT=""
BORDER="0"/></A></TD>
<TD bgcolor="#FFFFFF"><A HREF="edit_catalog_html.asp"><IMG
SRC="images/editbutton.png" WIDTH="54" HEIGHT="32" ALT=""
BORDER="0"/></A></TD>
<TD width="185" bgcolor="#FFFFFF"></TD>
<TD valign="bottom" width="100%" colspan="99" align="right"
bgcolor="#FFFFFF"
style="padding-top:3px;padding-right:13px;color:#666666;font-weight:bold;font-size:14px"><FORM
action="search.asp">Search: <INPUT type="text" value="" size="20"
name="query" style="font-size:10px" /></FORM></TD>
</TR>
<TR height="13">
<TD colspan="99"><IMG SRC="images/banner_border.png" WIDTH="100%"
HEIGHT="13" ALT="" BORDER="0"/></TD>
</TR>
<TR height="100%">

<TD colspan="99">
<TABLE width="92%" align="right" cellpadding="0" cellspacing="0"
bgcolor="#426e81">
<TR height="11" ><TD
style="background-image:url(images/ltborder.png);background-repeat:no-repeat;background-align:top
right;" WIDTH="9"></TD>
<TD width="100%"
style="padding:5px;background-image:url(images/topborder.png);background-repeat:repeat-x;font-size:13px;font-weight:bold;font-family:Trebuchet,Verdana,Arial;color:#FFFFFF;backg round-color:#426e81">Kandidaten</TD></TR>
<TR><TD
style="background-image:url(images/leftborder.png);background-repeat:repeat-y;"
WIDTH="9"><IMG SRC="images/leftborder.png"/></TD>
<TD bgcolor="#FFFFFF" style="padding:8px">
<TABLE border="0" width="100%" bgcolor="#333333" cellpadding="0"
cellspacing="0">
<xsl:apply-templates select="CANDIDATE"/>
</TABLE></TD>
</TR>
<TR height="11" ><TD
style="background-image:url(images/blcorner.png);background-repeat:no-repeat;background-align:top
right;background-color:#426e81" WIDTH="9"></TD>
<TD width="100%"
style="background-image:url(images/bottomborder.png);background-repeat:repeat-x;background-color:#426e81"></TD></TR>
</TABLE>
</TD>
</TR>

<TR height="100%">
<TD colspan="99">
<TABLE width="92%" align="right" cellpadding="0" cellspacing="0"
bgcolor="#426e81">
<TR height="11" ><TD
style="background-image:url(images/ltborder.png);background-repeat:no-repeat;background-align:top
right;" WIDTH="9"></TD>
<TD width="100%"
style="padding:5px;background-image:url(images/topborder.png);background-repeat:repeat-x;font-size:13px;font-weight:bold;font-family:Trebuchet,Verdana,Arial;color:#FFFFFF;backg round-color:#426e81">Jury's</TD></TR>
<TR><TD
style="background-image:url(images/leftborder.png);background-repeat:repeat-y;"
WIDTH="9"><IMG SRC="images/leftborder.png"/></TD>
<TD bgcolor="#FFFFFF" style="padding:8px">
<TABLE border="0" width="100%" bgcolor="#333333" cellpadding="0"
cellspacing="0">
<xsl:apply-templates select="JURY"/>
</TABLE></TD>
</TR>
<TR height="11" ><TD
style="background-image:url(images/blcorner.png);background-repeat:no-repeat;background-align:top
right;background-color:#426e81" WIDTH="9"></TD>
<TD width="100%"
style="background-image:url(images/bottomborder.png);background-repeat:repeat-x;background-color:#426e81"></TD></TR>
</TABLE>
</TD>

</TR>

<TR height="100%">
<TD colspan="99">
<TABLE width="92%" align="right" cellpadding="0" cellspacing="0"
bgcolor="#426e81">
<TR height="11" ><TD
style="background-image:url(images/ltborder.png);background-repeat:no-repeat;background-align:top
right;" WIDTH="9"></TD>
<TD width="100%"
style="padding:5px;background-image:url(images/topborder.png);background-repeat:repeat-x;font-size:13px;font-weight:bold;font-family:Trebuchet,Verdana,Arial;color:#FFFFFF;backg round-color:#426e81">Rondes</TD></TR>
<TR><TD
style="background-image:url(images/leftborder.png);background-repeat:repeat-y;"
WIDTH="9"><IMG SRC="images/leftborder.png"/></TD>
<TD bgcolor="#FFFFFF" style="padding:8px">
<TABLE border="0" width="100%" bgcolor="#333333" cellpadding="0"
cellspacing="0">
<xsl:apply-templates select="ROUND"/>
</TABLE></TD>
</TR>
<TR height="11" ><TD
style="background-image:url(images/blcorner.png);background-repeat:no-repeat;background-align:top
right;background-color:#426e81" WIDTH="9"></TD>
<TD width="100%"
style="background-image:url(images/bottomborder.png);background-repeat:repeat-x;background-color:#426e81"></TD></TR>
</TABLE>

</TD>
</TR>

</TABLE>
</BODY>
</HTML>

</xsl:template>

<xsl:template match="CANDIDATE">
<TR valign="bottom" bgcolor="#FFFFFF">
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Naam: </B><xsl:value-of
select="NAAM"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Voornaam:
</B><xsl:value-of select="FIRSTNAME"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Gdatum:
</B><xsl:value-of select="BIRTHDATE"/></TD>

</TR>
<TR valign="bottom" bgcolor="#FFFFFF">
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Adres: </B><xsl:value-of
select="ADDRESS"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Tel.: </B><xsl:value-of
select="TELNR"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Gsm: </B><xsl:value-of
select="GSMNR"/></TD>
</TR>
<TR valign="bottom" bgcolor="#FFFFFF"><TD bgcolor="#FFFFFF"
style="font-size:16px;font-weight:bold"><xsl:value-of select="titel"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Beroep:
</B><xsl:value-of select="PROFESSION"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Idool: </B><xsl:value-of
select="IDOL"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Motto: </B><xsl:value-of
select="MOTTO"/></TD>
</TR>

<TR valign="bottom" bgcolor="#FFFFFF"><TD bgcolor="#FFFFFF"
style="font-size:16px;font-weight:bold"><xsl:value-of select="titel"/></TD>
<TD colspan="3" bgcolor="#FFFFFF" style="font-size:11px"><B>Motivatie:
</B><xsl:value-of select="MOTIVATION"/></TD>
</TR>
<TR height="1">
<TD colspan="4"></TD>
</TR>
</xsl:template>

</xsl:stylesheet>


<APPLICATION xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:nonamespaceschemaLocation="#xsd">
<CANDIDATE>
<NAME>
name
</NAME>
<FIRSTNAME>
first
</FIRSTNAME>
<ADDRESS>
first
</ADDRESS>
<BIRTHDATE>
05/12/82
</BIRTHDATE>
<MOTTO>

test
</MOTTO>
<TELNR>
test
</TELNR>
<GSMNR>
test
</GSMNR>
<PROFESSION>
test
</PROFESSION>
<MOTIVATION>
test
</MOTIVATION>
<IDOL>
test
</IDOL>

</CANDIDATE>

<CANDIDATE>
<NAME>
name2
</NAME>
<FIRSTNAME>
firs2t
</FIRSTNAME>
<ADDRESS>
firs2t
</ADDRESS>
<BIRTHDATE>
05/12/82
</BIRTHDATE>
<MOTTO>
test

</MOTTO>
<TELNR>
test
</TELNR>
<GSMNR>
test
</GSMNR>
<PROFESSION>
test
</PROFESSION>
<MOTIVATION>
test
</MOTIVATION>
<IDOL>
test
</IDOL>
</CANDIDATE>

<JURY>
<NAME>
naamjury
</NAME>
<FIRSTNAME>
voornaamjury
</FIRSTNAME>
<BIRTHDATE>
06/13/50
</BIRTHDATE>
<TELNR>
test
</TELNR>
<GSMNR>
test
</GSMNR>

<EXPERTISE>
test
</EXPERTISE>
<GENRE>
test
</GENRE>
</JURY>

<ROUND>
<NAME>
naamronde
</NAME>
<LOCATION>
locatieronde
</LOCATION>
<LOCATIONADDRESS>
test

</LOCATIONADDRESS>
<LOCATIONTELNR>
test
</LOCATIONTELNR>
</ROUND>
</APPLICATION>

--
- gipsy boy
Jul 20 '05 #4
gipsy boy wrote:
gipsy boy wrote:
Martin Honnen wrote:


gipsy boy wrote:
I made a web service in C++ that throws XML to the client (browser).
But, the XSLT transormation (xml->html) doen't happen!

I have XSLT files for this, they work, I mean when I put the output
of the app as an XML file on some server, and make it use the XSLT
files to transform into HTML, it works, I get a HTML page.

The XSLT file is on a separate server


That could be the problem, for security reasons a browser might not
apply a stylesheet from a different server. Mozilla for instance
doesn't:
<http://www.mozilla.org/projects/xslt/faq.html>
I think with IE it depends on the configuration.


Okay, thanks.
Can I provide the xslt transformation file *WITH* the xml code?
I tried just doing an <xsl:stylesheet..> xsl code </xsl:stylesheet>
inside the XML code, but it was treated as junk.
Does it *have* to be in a different file?

I foudn out how to do this now, but:

XML Parsing Error: junk after document element
Location: http://localhost:3232/
Line Number 128, Column 1:<APPLICATION
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">


Nevermind! Silly..
Well, now I get a grey screen in Firefox! Wth?
Page source gives the correct xml file..
I don't have an XSD schema though, is this necessary?

--
- gipsy boy
Jul 20 '05 #5


gipsy boy wrote:

I foudn out how to do this now, but:

XML Parsing Error: junk after document element
Location: http://localhost:3232/
Line Number 128, Column 1:<APPLICATION
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
Any idea why? this is the literal code :


Well an XML document can only have exactly one document element but you
have tried to put both the XML and the XSLT into one document by simply
appending the source of the XML to the XSLT.
You would need to have the stylesheet as a child node of the document
element of the XML.

--

Martin Honnen
http://JavaScript.FAQTs.com/
Jul 20 '05 #6


gipsy boy wrote:

Well, now I get a grey screen in Firefox! Wth?
I don't have an XSD schema though, is this necessary?


No but you need an internal DTD fragment that declares the id attribute
if Mozilla is supposed to find the stylesheet.

--

Martin Honnen
http://JavaScript.FAQTs.com/
Jul 20 '05 #7
Martin Honnen wrote:


gipsy boy wrote:

Well, now I get a grey screen in Firefox! Wth?

I don't have an XSD schema though, is this necessary?

No but you need an internal DTD fragment that declares the id attribute
if Mozilla is supposed to find the stylesheet.


How do I do this exactly?
Now I have an error with the parsing of the XSLT sheet.
There are no syntax errors in the xslt sheet, I tested it externally.
I think this is the only obstacle left, the DTD fragment. Thanks so much
if you can help me with that.

Error:Error loading stylesheet: Parsing an XSLT stylesheet failed.
This is the code now:

<?xml version="1.0" encoding="ISO8859-1"?>
<?xml-stylesheet type="text/xml" href="xslt"?><!DOCTYPE APPLICATION
SYSTEM "doc.dtd">
<APPLICATION xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:nonamespaceschemaLocation="#xsd">
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0" id="#xslt">
<xsl:output method="html" indent="yes" doctype-public="-//W3C//DTD HTML
4.01 Transitional//EN"
doctype-system="http://www.w3.org/TR/html4/loose.dtd" />
<xsl:template match="xsl:stylesheet">
<!-- ignore -->
</xsl:template>
<xsl:template match="APPLICATION">
<HTML>
<HEAD>
<TITLE>joesgarage</TITLE>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"/>
</HEAD>
<BODY BGCOLOR="#DEF0EC" LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0"
MARGINHEIGHT="0"
style="color:#000000;font-family:Trebuchet,Verdana;font-size:11px">

<TABLE WIDTH="100%" BORDER="0" CELLPADDING="0" CELLSPACING="0">
<TR height="100">
<TD COLSPAN="4" bgcolor="#FFFFFF">
<IMG SRC="images/joesgarage.png" WIDTH="321" HEIGHT="100" ALT=""/></TD>
<TD bgcolor="#FFFFFF" width="100%">
<IMG SRC="images/bannerstretch.png" WIDTH="100%" HEIGHT="100"
ALT=""/></TD>
<TD bgcolor="#FFFFFF">
<IMG SRC="images/bannerright.png" WIDTH="432" HEIGHT="100" ALT=""/></TD>
</TR>
<TR height="32">

<TD width="5" bgcolor="#FFFFFF"></TD>
<TD bgcolor="#FFFFFF"><A HREF="browse_catalog_html.asp"><IMG
SRC="images/browsebutton.png" WIDTH="74" HEIGHT="32" ALT=""
BORDER="0"/></A></TD>
<TD bgcolor="#FFFFFF"><A HREF="edit_catalog_html.asp"><IMG
SRC="images/editbutton.png" WIDTH="54" HEIGHT="32" ALT=""
BORDER="0"/></A></TD>
<TD width="185" bgcolor="#FFFFFF"></TD>
<TD valign="bottom" width="100%" colspan="99" align="right"
bgcolor="#FFFFFF"
style="padding-top:3px;padding-right:13px;color:#666666;font-weight:bold;font-size:14px"><FORM
action="search.asp">Search: <INPUT type="text" value="" size="20"
name="query" style="font-size:10px" /></FORM></TD>
</TR>
<TR height="13">
<TD colspan="99"><IMG SRC="images/banner_border.png" WIDTH="100%"
HEIGHT="13" ALT="" BORDER="0"/></TD>
</TR>
<TR height="100%">
<TD colspan="99">

<TABLE width="92%" align="right" cellpadding="0" cellspacing="0"
bgcolor="#426e81">
<TR height="11" ><TD
style="background-image:url(images/ltborder.png);background-repeat:no-repeat;background-align:top
right;" WIDTH="9"></TD>
<TD width="100%"
style="padding:5px;background-image:url(images/topborder.png);background-repeat:repeat-x;font-size:13px;font-weight:bold;font-family:Trebuchet,Verdana,Arial;color:#FFFFFF;backg round-color:#426e81">Kandidaten</TD></TR>
<TR><TD
style="background-image:url(images/leftborder.png);background-repeat:repeat-y;"
WIDTH="9"><IMG SRC="images/leftborder.png"/></TD>
<TD bgcolor="#FFFFFF" style="padding:8px">
<TABLE border="0" width="100%" bgcolor="#333333" cellpadding="0"
cellspacing="0">
<xsl:apply-templates select="CANDIDATE"/>
</TABLE></TD>
</TR>
<TR height="11" ><TD
style="background-image:url(images/blcorner.png);background-repeat:no-repeat;background-align:top
right;background-color:#426e81" WIDTH="9"></TD>
<TD width="100%"
style="background-image:url(images/bottomborder.png);background-repeat:repeat-x;background-color:#426e81"></TD></TR>
</TABLE>
</TD>
</TR>
<TR height="100%">
<TD colspan="99">
<TABLE width="92%" align="right" cellpadding="0" cellspacing="0"
bgcolor="#426e81">
<TR height="11" ><TD
style="background-image:url(images/ltborder.png);background-repeat:no-repeat;background-align:top
right;" WIDTH="9"></TD>
<TD width="100%"
style="padding:5px;background-image:url(images/topborder.png);background-repeat:repeat-x;font-size:13px;font-weight:bold;font-family:Trebuchet,Verdana,Arial;color:#FFFFFF;backg round-color:#426e81">Jury's</TD></TR>
<TR><TD
style="background-image:url(images/leftborder.png);background-repeat:repeat-y;"
WIDTH="9"><IMG SRC="images/leftborder.png"/></TD>
<TD bgcolor="#FFFFFF" style="padding:8px">
<TABLE border="0" width="100%" bgcolor="#333333" cellpadding="0"
cellspacing="0">
<xsl:apply-templates select="JURY"/>
</TABLE></TD>
</TR>
<TR height="11" ><TD
style="background-image:url(images/blcorner.png);background-repeat:no-repeat;background-align:top
right;background-color:#426e81" WIDTH="9"></TD>
<TD width="100%"
style="background-image:url(images/bottomborder.png);background-repeat:repeat-x;background-color:#426e81"></TD></TR>
</TABLE>
</TD>
</TR>

<TR height="100%">
<TD colspan="99">
<TABLE width="92%" align="right" cellpadding="0" cellspacing="0"
bgcolor="#426e81">
<TR height="11" ><TD
style="background-image:url(images/ltborder.png);background-repeat:no-repeat;background-align:top
right;" WIDTH="9"></TD>
<TD width="100%"
style="padding:5px;background-image:url(images/topborder.png);background-repeat:repeat-x;font-size:13px;font-weight:bold;font-family:Trebuchet,Verdana,Arial;color:#FFFFFF;backg round-color:#426e81">Rondes</TD></TR>
<TR><TD
style="background-image:url(images/leftborder.png);background-repeat:repeat-y;"
WIDTH="9"><IMG SRC="images/leftborder.png"/></TD>
<TD bgcolor="#FFFFFF" style="padding:8px">
<TABLE border="0" width="100%" bgcolor="#333333" cellpadding="0"
cellspacing="0">
<xsl:apply-templates select="ROUND"/>
</TABLE></TD>
</TR>
<TR height="11" ><TD
style="background-image:url(images/blcorner.png);background-repeat:no-repeat;background-align:top
right;background-color:#426e81" WIDTH="9"></TD>
<TD width="100%"
style="background-image:url(images/bottomborder.png);background-repeat:repeat-x;background-color:#426e81"></TD></TR>
</TABLE>
</TD>

</TR>

</TABLE>
</BODY>
</HTML>

</xsl:template>

<xsl:template match="CANDIDATE">
<TR valign="bottom" bgcolor="#FFFFFF">
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Naam: </B><xsl:value-of
select="NAAM"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Voornaam:
</B><xsl:value-of select="FIRSTNAME"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Gdatum:
</B><xsl:value-of select="BIRTHDATE"/></TD>
</TR>

<TR valign="bottom" bgcolor="#FFFFFF">
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Adres: </B><xsl:value-of
select="ADDRESS"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Tel.: </B><xsl:value-of
select="TELNR"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Gsm: </B><xsl:value-of
select="GSMNR"/></TD>
</TR>
<TR valign="bottom" bgcolor="#FFFFFF"><TD bgcolor="#FFFFFF"
style="font-size:16px;font-weight:bold"><xsl:value-of select="titel"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Beroep:
</B><xsl:value-of select="PROFESSION"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Idool: </B><xsl:value-of
select="IDOL"/></TD>
<TD bgcolor="#FFFFFF" style="font-size:11px"><B>Motto: </B><xsl:value-of
select="MOTTO"/></TD>
</TR>
<TR valign="bottom" bgcolor="#FFFFFF"><TD bgcolor="#FFFFFF"
style="font-size:16px;font-weight:bold"><xsl:value-of select="titel"/></TD>

<TD colspan="3" bgcolor="#FFFFFF" style="font-size:11px"><B>Motivatie:
</B><xsl:value-of select="MOTIVATION"/></TD>
</TR>
<TR height="1">
<TD colspan="4"></TD>
</TR>
</xsl:template>

</xsl:stylesheet>
<CANDIDATE>
<NAME>
name
</NAME>
<FIRSTNAME>
first
</FIRSTNAME>
<ADDRESS>

first
</ADDRESS>
<BIRTHDATE>
05/12/82
</BIRTHDATE>
<MOTTO>
test
</MOTTO>
<TELNR>
test
</TELNR>
<GSMNR>
test
</GSMNR>
<PROFESSION>
test
</PROFESSION>

<MOTIVATION>
test
</MOTIVATION>
<IDOL>
test
</IDOL>
</CANDIDATE>

<CANDIDATE>
<NAME>
name2
</NAME>
<FIRSTNAME>
firs2t
</FIRSTNAME>
<ADDRESS>
firs2t

</ADDRESS>
<BIRTHDATE>
05/12/82
</BIRTHDATE>
<MOTTO>
test
</MOTTO>
<TELNR>
test
</TELNR>
<GSMNR>
test
</GSMNR>
<PROFESSION>
test
</PROFESSION>
<MOTIVATION>

test
</MOTIVATION>
<IDOL>
test
</IDOL>
</CANDIDATE>

<JURY>
<NAME>
naamjury
</NAME>
<FIRSTNAME>
voornaamjury
</FIRSTNAME>
<BIRTHDATE>
06/13/50
</BIRTHDATE>

<TELNR>
test
</TELNR>
<GSMNR>
test
</GSMNR>
<EXPERTISE>
test
</EXPERTISE>
<GENRE>
test
</GENRE>
</JURY>

<ROUND>
<NAME>
naamronde

</NAME>
<LOCATION>
locatieronde
</LOCATION>
<LOCATIONADDRESS>
test
</LOCATIONADDRESS>
<LOCATIONTELNR>
test
</LOCATIONTELNR>
</ROUND>
</APPLICATION>

--
- gipsy boy
Jul 20 '05 #8


gipsy boy wrote:
Martin Honnen wrote:

No but you need an internal DTD fragment that declares the id
attribute if Mozilla is supposed to find the stylesheet.

How do I do this exactly?


<?xml version="1.0" encoding="ISO8859-1"?>


That should be
<?xml version="1.0" encoding="ISO-8859-1"?>
Here is a snippet of an example that works for me with Netscape 7.2 and
Firefox 1.0:

<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xml" href="#xslt"?>
<!DOCTYPE riders [
<!ELEMENT xsl:stylesheet ANY>
<!ATTLIST xsl:stylesheet
id ID #REQUIRED
version CDATA #FIXED "1.0"
xmlns:xsl CDATA #FIXED "http://www.w3.org/1999/XSL/Transform">
]>
<riders>
<xsl:stylesheet id="xslt"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
--

Martin Honnen
http://JavaScript.FAQTs.com/
Jul 20 '05 #9
Martin Honnen wrote:


gipsy boy wrote:
Martin Honnen wrote:



No but you need an internal DTD fragment that declares the id
attribute if Mozilla is supposed to find the stylesheet.


How do I do this exactly?

<?xml version="1.0" encoding="ISO8859-1"?>

That should be
<?xml version="1.0" encoding="ISO-8859-1"?>
Here is a snippet of an example that works for me with Netscape 7.2 and
Firefox 1.0:

<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xml" href="#xslt"?>
<!DOCTYPE riders [
<!ELEMENT xsl:stylesheet ANY>
<!ATTLIST xsl:stylesheet
id ID #REQUIRED
version CDATA #FIXED "1.0"
xmlns:xsl CDATA #FIXED "http://www.w3.org/1999/XSL/Transform">
]>
<riders>
<xsl:stylesheet id="xslt"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">


Thanks again!
I did this for myself now, and get a parsing error in the XSLT.

Is the root tag in your xslt the tag "RIDERS"?

I simplified the stylesheet, and now I have this code for the xml file.
It says "Error loading stylesheet: Parsing an XSLT stylesheet failed."
Any ideas?
<?xml version="1.0" encoding="ISO8859-1"?>
<!DOCTYPE APPLICATION [
<!ATTLIST xsl:stylesheet id ID #REQUIRED>
]>
<?xml-stylesheet type="text/xml" href="xslt"?>
<APPLICATION>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0" id="#xslt">
<xsl:output method="html" indent="yes" doctype-public="-//W3C//DTD HTML
4.01 Transitional//EN"
doctype-system="http://www.w3.org/TR/html4/loose.dtd" />
<xsl:template match="xsl:stylesheet">
<!-- ignore -->
</xsl:template>
<xsl:template match="APPLICATION">
<HTML>
<HEAD>
<TITLE>joesgarage</TITLE>

<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-1"/>
</HEAD>
<BODY BGCOLOR="#DEF0EC" LEFTMARGIN="0" TOPMARGIN="0" MARGINWIDTH="0"
MARGINHEIGHT="0"
style="color:#000000;font-family:Trebuchet,Verdana;font-size:11px">
</BODY>
</HTML>

</xsl:template>

<xsl:template match="CANDIDATE">
Candidate
</xsl:template>

<xsl:template match="JURY">
Jury
</xsl:template>

<xsl:template match="ROUND">

Round
</xsl:template>
</xsl:stylesheet>
<CANDIDATE>
<NAME>
name
</NAME>
<FIRSTNAME>
first
</FIRSTNAME>
<ADDRESS>
first
</ADDRESS>
<BIRTHDATE>
05/12/82

</BIRTHDATE>
<MOTTO>
test
</MOTTO>
<TELNR>
test
</TELNR>

--
- gipsy boy
Jul 20 '05 #10
gipsy boy wrote:

Thanks again!
I did this for myself now, and get a parsing error in the XSLT.

Is the root tag in your xslt the tag "RIDERS"?

I simplified the stylesheet, and now I have this code for the xml file.
It says "Error loading stylesheet: Parsing an XSLT stylesheet failed."
Any ideas?
<?xml version="1.0" encoding="ISO8859-1"?>
<!DOCTYPE APPLICATION [
<!ATTLIST xsl:stylesheet id ID #REQUIRED>
]>
<?xml-stylesheet type="text/xml" href="xslt"?>
<APPLICATION>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0" id="#xslt">


Sorry I made a mistake here of course, with the id/href.
I get an empty document now, it seems like the only tag that is
transformed is the root, APPLICATION tag.
The other tags aren't.
Can I see the rest of your xml code? I'm sure I'll be able to figure out
then.
Thanks so much for your help, btw, never coudl've done this without.

--
gipsy boy
Jul 20 '05 #11
gipsy boy wrote:
gipsy boy wrote:

Thanks again!
I did this for myself now, and get a parsing error in the XSLT.

Is the root tag in your xslt the tag "RIDERS"?

I simplified the stylesheet, and now I have this code for the xml
file. It says "Error loading stylesheet: Parsing an XSLT stylesheet
failed."
Any ideas?
<?xml version="1.0" encoding="ISO8859-1"?>
<!DOCTYPE APPLICATION [
<!ATTLIST xsl:stylesheet id ID #REQUIRED>
]>
<?xml-stylesheet type="text/xml" href="xslt"?>
<APPLICATION>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0" id="#xslt">

Sorry I made a mistake here of course, with the id/href.
I get an empty document now, it seems like the only tag that is
transformed is the root, APPLICATION tag.
The other tags aren't.
Can I see the rest of your xml code? I'm sure I'll be able to figure out
then.
Thanks so much for your help, btw, never coudl've done this without.


Nevermind, solved it already. Doing very silly things today..
Thanks again,
--
- gipsy boy
Jul 20 '05 #12


gipsy boy wrote:
I get an empty document now, it seems like the only tag that is
transformed is the root, APPLICATION tag.
The other tags aren't.
You can run load the XML in the DOM inspector then you will be able to
see the result tree of the transformation.
Can I see the rest of your xml code? I'm sure I'll be able to figure out
then.


The example is this:

<?xml version="1.0" encoding="ISO-8859-1"?>
<?xml-stylesheet type="text/xml" href="#xslt"?>
<!DOCTYPE riders [
<!ELEMENT xsl:stylesheet ANY>
<!ATTLIST xsl:stylesheet
id ID #REQUIRED
version CDATA #FIXED "1.0"
xmlns:xsl CDATA #FIXED "http://www.w3.org/1999/XSL/Transform">
]>
<riders>
<xsl:stylesheet id="xslt"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output method="html" />
<xsl:template match="/">
<html>
<head>
<title>Riders</title>
</head>
<body>
<xsl:apply-templates select="riders" />
</body>
</html>
</xsl:template>
<xsl:template match="riders">
<table border="1">
<tbody>
<xsl:apply-templates select="rider" />
</tbody>
</table>
</xsl:template>
<xsl:template match="rider">
<tr><td><xsl:value-of select="." /></td></tr>
</xsl:template>
</xsl:stylesheet>

<rider>Lance Armstrong</rider>
<rider>Jan Ullrich</rider>

</riders>

But be aware that IE/MSXML do not support the embedded stylesheet e.g. the
<?xml-stylesheet type="text/xml" href="#xslt"?>

--

Martin Honnen
http://JavaScript.FAQTs.com/
Jul 20 '05 #13

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Sergio del Amo | last post by:
Hi, I use the xslt functions provided by php. I am running in my computer the package xampp(www.apachefriends.org) which includes php/apache/mysql...
6
by: Pete | last post by:
I am just getting to grips with XML and I was wondering if you could help me with something that no-one seems able or willing to help with.. I...
6
by: Ramon M. Felciano | last post by:
Helo all -- I'm trying to gain a deeper understand for what type of semi-declarative programming can be done through XML and XPath/XSLT. I'm...
1
by: Jens Mueller | last post by:
Hi there, this is a Java-XML Question, so I am not sure whether this is the right place, haven't found anything better .... I try to convert a...
4
by: Stephen | last post by:
I have the following that outputs an xml file to a div using ajax: <script type="text/javascript"> function ajaxXML(url,control_id){ if...
5
by: shauldar | last post by:
Is there a way (tool, hack...) to create an XSL:FO from an XSLT + XML files? My motivation is that we want to use a tool to design reports, and...
4
by: simon.a.hulbert | last post by:
Hi, I'm trying to view the following xslt transformation using firefox <xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform" version...
4
by: stuart.jones | last post by:
Dear all I have a Windows Service that retrieves some data as XML, applies an XSLT to produce a CSV which is saved to the filesystem as a text...
2
by: Jonny B | last post by:
Hi all, I'm working on an a clientside xslt using jscript that passes a parameter to the xsl. I've got it working no problem in IE but cant get it...
0
by: teenabhardwaj | last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: CD Tom | last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
0
by: antdb | last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine In the overall architecture, a new "hyper-convergence" concept was...
0
by: Matthew3360 | last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function. Here is my code. ...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.