PDA

View Full Version : Output format handler???


TheCatWhisperer
01-29-2004, 04:27 AM
I'v installed the web-app only build on my existing tomcat 4.1.29 server (modifying the web.xml & copying the xalan.jar as required). However, when i try and run an app, NOthing is returned:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1"></HEAD>
<BODY></BODY></HTML>


not only that, i get this exception in the log:

28 Jan 2004 13:52:14 (127.0.0.1 3) INFO responders.Responder - Responding with error (text/html): The output format must have a '{http://xml.apache.org/xalan}content-handler' property!org.apache.xml.utils.WrappedRuntimeExcept ion: The output format must have a '{http://xml.apache.org/xalan}content-handler' property!
at org.apache.xalan.serialize.SerializerFactory.getSe rializer(SerializerFactory.java:142)
at org.apache.xalan.transformer.TransformerImpl.creat eResultContentHandler(TransformerImpl.java:1048)
at org.apache.xalan.transformer.TransformerImpl.creat eResultContentHandler(TransformerImpl.java:975)
at org.apache.xalan.transformer.TransformerImpl.trans form(TransformerImpl.java:1124)
at org.apache.xalan.transformer.TransformerImpl.trans form(TransformerImpl.java:1107)
at com.laszlosystems.utils.TransformUtils.applyTransf orm(TransformUtils.java:83)
at com.laszlosystems.utils.TransformUtils.applyTransf orm(TransformUtils.java:58)
at com.laszlosystems.servlets.responders.ResponderAPP _CONSOLE.respondCompilationError(ResponderAPP_CONS OLE.java:175)
at com.laszlosystems.servlets.responders.ResponderAPP _CONSOLE.handleCompilationError(ResponderAPP_CONSO LE.java:160)
at com.laszlosystems.servlets.responders.ResponderCom pile.respondImpl(ResponderCompile.java:198)
at com.laszlosystems.servlets.responders.Responder.re spond(Responder.java:257)
at com.laszlosystems.servlets.LZServlet._doGet(LZServ let.java:295)
at com.laszlosystems.servlets.LZServlet.doGet(LZServl et.java:231)


Any ideas?

bloch
01-29-2004, 08:20 AM
http://www.laszlosystems.com/developers/download/installation-2.0p/install-instructions-core.php

You will need to drop $LPS_HOME/WEB-INF/lib/xalan.jar into

$TOMCAT_HOME/common/endorsed.

JRE 1.4.2 comes with an old version of xalan.

-Eric