description org.apache.cocoon.ProcessingException: Failed to execute pipeline.: org.apache.xml.utils.WrappedRuntimeException: The output format must have a '{http://xml.apache.org/xalan}content-handler' property!
the only new in my new setup is java from 1.4.1_01 to 1.4.2_03
i can not find a start point to begin a troubleshooting
Does thread http://archives.real-time.com/pipermail/cocoon-users/2003-September/038760.html help? Search for endorsed lib problem maybe.
There is a xalan environment check you can do
<!-- xalan environment check -->
<map:match pattern="env">
<map:generate type="request"/>
<map:transform src="../common/stylesheets/env.xsl"/>
<map:serialize type="html"/>
</map:match>with env.xsl something like
<?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>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
