DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12270>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12270 Not able to transform in-memory documents ------- Additional Comments From [EMAIL PROTECTED] 2002-09-03 18:54 ------- This sounds like a user error. Remember that various versions of IE have their own XSLT engine built in; if IE gets an xml file, it will attempt to use it's own XSLT engine to process it with the embedded stylesheet - which has nothing to do with Xalan. The most likely missing assumption is your stylesheet: it's currently defaulting to outputting an xml document from it's transformation, not an html document. You probably want an xsl:output method="html" statement, along with some more HTML markup in your stylesheet to make a 'pretty' page for display in the browser. (Presuming I'm understanding your description correctly; it would be good to have a more detailed description of what your system is doing)
