Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 58348 invoked from network); 26 Aug 2007 07:24:03 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Aug 2007 07:24:03 -0000 Received: (qmail 89005 invoked by uid 500); 26 Aug 2007 07:23:59 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 88979 invoked by uid 500); 26 Aug 2007 07:23:59 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 88970 invoked by uid 99); 26 Aug 2007 07:23:59 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Aug 2007 00:23:59 -0700 X-ASF-Spam-Status: No, hits=-98.5 required=10.0 tests=ALL_TRUSTED,WEIRD_PORT X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO brutus.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 26 Aug 2007 07:23:51 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 4037F71421A for ; Sun, 26 Aug 2007 00:23:31 -0700 (PDT) Message-ID: <29438258.1188113011259.JavaMail.jira@brutus> Date: Sun, 26 Aug 2007 00:23:31 -0700 (PDT) From: "Sergey Dmitriev (JIRA)" To: commits@harmony.apache.org Subject: [jira] Created: (HARMONY-4682) [classlib][crypto] MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [classlib][crypto] ------------------ Key: HARMONY-4682 URL: https://issues.apache.org/jira/browse/HARMONY-4682 Project: Harmony Issue Type: Bug Components: Classlib Reporter: Sergey Dmitriev Harmony does not support such a cipher as SSL_DH_anon_WITH_RC4_128_MD5. As well as other TLS_ ciphers. I know that both variant are quite correct but Oracle Application Server's Web console does not work in current condition. It fails with quote: --- cut here --- 07/08/26 07:05:02 SEVERE: CoreRemoteMBeanServer.fetchMBeanServerEjbRemote Error reading application-client descriptor: Error communicating with server: SSL_DH_anon_WITH_RC4_128_MD5 is not supported.; nested exception is: javax.naming.CommunicationException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported. [Root exception is java.io.IOException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported.] for URL: ormis://box.pb.intel.com:12701/defaultjavax.naming.NamingException: Error reading application-client descriptor: Error communicating with server: SSL_DH_anon_WITH_RC4_128_MD5 is not supported.; nested exception is: javax.naming.CommunicationException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported. [Root exception is java.io.IOException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported.] [Root exception is java.lang.InstantiationException: Error communicating with server: SSL_DH_anon_WITH_RC4_128_MD5 is not supported.; nested exception is: javax.naming.CommunicationException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported. [Root exception is java.io.IOException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported.]] (. . .) at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java) at javax.naming.InitialContext.initializeDefaultInitCtx(InitialContext.java:248) at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:278) at javax.naming.InitialContext.internalInit(InitialContext.java:217) at javax.naming.InitialContext.(InitialContext.java:149) (. . .) at javax.servlet.http.HttpServlet.service(HttpServlet.java:743) at javax.servlet.http.HttpServlet.service(HttpServlet.java:856) (. . .) at java.lang.Thread.run(Thread.java:662) Caused by: java.lang.InstantiationException: Error communicating with server: SSL_DH_anon_WITH_RC4_128_MD5 is not supported.; nested exception is: javax.naming.CommunicationException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported. [Root exception is java.io.IOException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported.] (. . .) ... 47 more Caused by: . . .: SSL_DH_anon_WITH_RC4_128_MD5 is not supported.; nested exception is: javax.naming.CommunicationException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported. [Root exception is java.io.IOException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported.] (. . .) ... 48 more Caused by: javax.naming.CommunicationException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported. [Root exception is java.io.IOException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported.] (. . .) ... 53 more Caused by: java.io.IOException: SSL_DH_anon_WITH_RC4_128_MD5 is not supported. (. . .) ... 55 more --- cut here --- The Web console is a quite important to work with Oracle App Server: for watching current performance indicators, tuning etc. Please note that the hackish patch (ciphersuite_hack.patch) cures the situation. THIS IS NOT THE FIX but just a demonstration that the root problem is here. Probably some kind of cipher name aliasing is one of possible solutions here. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.