Return-Path: Delivered-To: apmail-tomcat-users-archive@www.apache.org Received: (qmail 48877 invoked from network); 25 Nov 2008 00:09:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 25 Nov 2008 00:09:25 -0000 Received: (qmail 51443 invoked by uid 500); 25 Nov 2008 00:09:24 -0000 Delivered-To: apmail-tomcat-users-archive@tomcat.apache.org Received: (qmail 51414 invoked by uid 500); 25 Nov 2008 00:09: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 51403 invoked by uid 99); 25 Nov 2008 00:09:24 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Nov 2008 16:09:24 -0800 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of milu71@gmx.de designates 213.165.64.20 as permitted sender) Received: from [213.165.64.20] (HELO mail.gmx.net) (213.165.64.20) by apache.org (qpsmtpd/0.29) with SMTP; Tue, 25 Nov 2008 00:07:58 +0000 Received: (qmail invoked by alias); 25 Nov 2008 00:01:02 -0000 Received: from e179033238.adsl.alicedsl.de (EHLO wladimir) [85.179.33.238] by mail.gmx.net (mp044) with SMTP; 25 Nov 2008 01:01:02 +0100 X-Authenticated: #48488578 X-Provags-ID: V01U2FsdGVkX18M6BkvtRsMhAbePcx2KRqVm915AXt1ibgI3Kc74X gB9HFziTIAb88W Received: by wladimir (sSMTP sendmail emulation); Tue, 25 Nov 2008 01:00:56 +0000 Date: Tue, 25 Nov 2008 01:00:56 +0100 From: Michael Ludwig To: Tomcat Users List Subject: Re: tomcat 5.5.20 security issue Message-ID: <20081125000056.GG1112@wladimir> References: <20661073.post@talk.nabble.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <20661073.post@talk.nabble.com> User-Agent: Mutt/1.4.2.2i X-Y-GMX-Trusted: 0 X-FuHaFi: 0.58 X-Virus-Checked: Checked by ClamAV on apache.org aymen83 schrieb am 24.11.2008 um 05:45:11 (-0800): > I???m trying to run a web service on tomcat 5.5.20 but I have this > error. I???m not expert in tomcat so if someone can help me? > > java.lang.NoClassDefFoundError: > com/sun/org/apache/xml/internal/security/Init > > at > com.sun.xml.wss.impl.SecurableSoapMessage.(SecurableSoapMessage.java:75) You said you're using Java 1.5, which, as Chuck observed, doesn't have the class "com.sun.org.apache.xml.internal.security.Init". This is new in 1.6. You can try Apache's xmlsec.jar and then you possibly have to register this as the new security provider to supplant the built-in one. Maybe this is possible in the same way as substituting Apache's Xalan (XSLT) for SUN's version of Xalan, which is under "com.sun.org.apche.xalan". In case your application explicitly wants the "com.sun.org.apache" version, you'll probably have to upgrade. Michael Ludwig --------------------------------------------------------------------- To start a new topic, e-mail: users@tomcat.apache.org To unsubscribe, e-mail: users-unsubscribe@tomcat.apache.org For additional commands, e-mail: users-help@tomcat.apache.org