You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@xalan.apache.org by bu...@apache.org on 2001/11/09 20:03:02 UTC

DO NOT REPLY [Bug 4770] - XSL Validation broke under Java 2 runtime 1.4.0 beta 3

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=4770>.
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=4770

XSL Validation broke under Java 2 runtime 1.4.0 beta 3





------- Additional Comments From curcuru@apache.org  2001-11-09 11:03 -------
Given that JDK 1.4 (various versions) includes a back-level implementation of Xalan inside it's special 'extensions' area, please let us know which version of Xalan is being used by using the EnvironmentCheck utility, cf. http://xml.apache.org/xalan-j/faq.html#faq-9
Note that the current Xalan CVS tree includes both an updated EnvironmentCheck utility as well as a default extension that calls this; previous shipped Xalan builds do not have this.  The current CVS should be able to process this stylesheet:
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
    xmlns:xalan="http://xml.apache.org/xalan"
    exclude-result-prefixes="xalan">
<xsl:output indent="yes"/>
<xsl:template match="/">
  <out>
    <xsl:copy-of select="xalan:checkEnvironment()"/>
  </out>
</xsl:template>
</xsl:stylesheet>