Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 5861 invoked from network); 19 Jul 2006 17:22:40 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 19 Jul 2006 17:22:40 -0000 Received: (qmail 10245 invoked by uid 500); 19 Jul 2006 17:22:24 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 10213 invoked by uid 500); 19 Jul 2006 17:22:24 -0000 Mailing-List: contact users-help@tomcat.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: "Tomcat Users List" Delivered-To: mailing list users@tomcat.apache.org Received: (qmail 10187 invoked by uid 99); 19 Jul 2006 17:22:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Jul 2006 10:22:24 -0700 X-ASF-Spam-Status: No, hits=0.5 required=10.0 tests=DNS_FROM_RFC_ABUSE,HTML_MESSAGE,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: domain of ravi.tharakan@gmail.com designates 64.233.166.182 as permitted sender) Received: from [64.233.166.182] (HELO py-out-1112.google.com) (64.233.166.182) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 19 Jul 2006 10:22:23 -0700 Received: by py-out-1112.google.com with SMTP id c63so364817pyc for ; Wed, 19 Jul 2006 10:22:03 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:references; b=d6MgSuTaTpZgR/sctgl0hWp2uD2h16twlNMqI8ex6MFmTANu0g4bdWeriw1gDEQK76ahIxsMy9RoPfuxY1DIH0OD3qSHd/tpep5ALjcV8hnvFARV3okSinxsJ1ZPoN/4ulPCHld/88/LYaZIDSoTZSGH0C+Sc+hdJ4wJ5qeTINs= Received: by 10.35.51.6 with SMTP id d6mr1446161pyk; Wed, 19 Jul 2006 10:22:03 -0700 (PDT) Received: by 10.35.46.2 with HTTP; Wed, 19 Jul 2006 10:22:03 -0700 (PDT) Message-ID: Date: Wed, 19 Jul 2006 13:22:03 -0400 From: "Ravi Tharakan" To: "Tomcat Users List" Subject: Re: TransformerFactoryConfigurationError In-Reply-To: <44BE596A.5070204@christopherschultz.net> MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_55971_15713618.1153329723115" References: <44BE3FF4.5090302@christopherschultz.net> <44BE4A3D.8040009@christopherschultz.net> <44BE5373.7070303@christopherschultz.net> <44BE596A.5070204@christopherschultz.net> X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N ------=_Part_55971_15713618.1153329723115 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline Sorry, this is going over my head. Is there a way to look at the system properties without having to write a JSP? On 7/19/06, Christopher Schultz wrote: > > Ravi, > > > The TransformerFactoryImpl.class is there, but it's path is > > com/sun/org/apache/xalan/internal/xsltc/trax/ > > > > Do you think this is the problem? > > Probably. > > There's a system property that dictates which implementations are chosen > for SAX and DOM parsers, as well as XSLT processors. It's odd that it's > being set to something that is invalid. > > I don't remember what those system properties are, but you can get the > current list at any time by doing this: > > System.getProperties().list(System.out); > > This will dump the current system properties to standard output. If you > put this into a JSP and hit it with a web browser, it will dump the > system properties, and you can check them out. > > Then, you can see which one is pointing to the wrong XSLT processor and > possibly correct it. (Just start Java with > - > Dthat.system.property=com.sun.org.apache.xalan.internal.trax.TransformerFactoryImpl > , > or whatever seems most appropriate given the current value of that > system property). > > If you can't find a system property with that (incorrect) class being > mentioned, then it's probably some kind (unfortunately) incorrect > default value. In that case, you'll have to start looking around on the > web for sites that describe how to set the default. > > Good luck, > -chris > > > > > ------=_Part_55971_15713618.1153329723115--