Hello, I reworked the xml creation in the servlet but still the result is blank. Please have a look at the attached servlet and the stylesheet. For the sake of visibility I refrain from posting it inside this mail :o)
cheers, Pete > --- Ursprüngliche Nachricht --- > Von: "J.Pietschmann" <[EMAIL PROTECTED]> > An: [email protected] > Betreff: Re: How to pass input of xml tranfs. to xslt transf. ? > Datum: Sun, 11 Dec 2005 22:49:15 +0100 > > [EMAIL PROTECTED] wrote: > > handler.startElement("", "", "root", atts); > ^^^^^^ > This doesn't look good. Try null here. Did you try to serialize > the generated XML? > > J.Pietschmann > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > -- 10 GB Mailbox, 100 FreeSMS/Monat http://www.gmx.net/de/go/topmail +++ GMX - die erste Adresse für Mail, Message, More +++
<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:fn="http://www.w3.org/2004/07/xpath-functions" xmlns:xdt="http://www.w3.org/2004/07/xpath-datatypes"> <xsl:variable name="fo:layout-master-set"> <fo:layout-master-set> <fo:simple-page-master master-name="default-page" page-height="11in" page-width="8.5in" margin-left="0.6in" margin-right="0.6in"> <fo:region-body margin-top="0.79in" margin-bottom="0.79in" /> </fo:simple-page-master> </fo:layout-master-set> </xsl:variable> <xsl:output version="1.0" encoding="UTF-8" indent="no" omit-xml-declaration="no" media-type="text/html" /> <xsl:template match="/"> <fo:root> <xsl:copy-of select="$fo:layout-master-set" /> <fo:page-sequence master-reference="default-page" initial-page-number="1" format="1"> <fo:flow flow-name="xsl-region-body"> <fo:block> <xsl:for-each select="Hello"> <fo:inline color="#800000"> <xsl:apply-templates /> </fo:inline> </xsl:for-each> </fo:block> </fo:flow> </fo:page-sequence> </fo:root> </xsl:template> </xsl:stylesheet>
BinaryStreamServlet.java
Description: Binary data
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
