This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RE: weird think with saxon


It works correctly for me.

Are you using the Microsoft Java VM? Because this looks like a reappearance
of a bug that used to occur quite often, but which I haven't seen for some
time: Saxon's output is truncated in a way I have never fully understood.
The problem, if it's the same problem, goes away if you upgrade the Java VM
(using Tools/Windows Update in Internet Explorer).

Michael Kay
Software AG
home: Michael.H.Kay@ntlworld.com
work: Michael.Kay@softwareag.com



> -----Original Message-----
> From: owner-xsl-list@lists.mulberrytech.com
> [mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of
> Jakub.Valenta@Deio.net
> Sent: 06 February 2002 17:16
> To: XSL-List@lists.mulberrytech.com
> Subject: [xsl] weird think with saxon
>
>
> Hi all,
> I just meet strange problem. I was doing some stylesheet and
> I decided to
> test it with Saxon (otherwise I use Xalan and MSXML),
> and the Saxon didn't work so was reducing the input xml and
> stylesheet to
> find out where the error is and I ended up with
> the following input:
>
>      <?xml version="1.0" encoding="UTF-8"?>
>        <POC>
>         <return_to_sender>something to return</return_to_sender>
>                    <testevent counter="34" day="4" hour="18"
> min="28" month
> ="1" sec="34" year="2002">
>                        test
>                   </testevent>
>              </POC>
>
> and stylesheet:
>
>           <?xml version="1.0"?>
>            <xsl:stylesheet version="1.0" xmlns:xsl
> ="http://www.w3.org/1999/XSL/Transform";>
>              <xsl:output indent="yes" />
>
>               <xsl:template match="/">
>                 first template called
>                <xsl:apply-templates select="POC" />
>             </xsl:template>
>
>            <xsl:template match="POC">
>               second template called
>              <xsl:apply-templates select="testevent" />
>          </xsl:template>
>
>         <xsl:template match="testevent">
>          <ADT_A01>
>      what's wrong?
>         </ADT_A01>
>      </xsl:template>
>   </xsl:stylesheet>
>
> it should get (Xalan and MSXMl does so) result like:
>
>        <?xml version="1.0" encoding="UTF-16"?>
>           first template called
>          second template called
>           <ADT_A01>
>      what's wrong?
>         </ADT_A01>
>
> but with Saxon I got only:
>
>    <?xml version="1.0" encoding="utf-8"?>
>       first template called
>
>
> Is there something wrong with me(Xalan and MSXML) or with Saxon?
>
> br,
>
> Jakub
>
>
>
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
>


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]