Return-Path: Delivered-To: apmail-geronimo-dev-archive@www.apache.org Received: (qmail 27646 invoked from network); 15 Apr 2006 00:34:01 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 15 Apr 2006 00:34:01 -0000 Received: (qmail 31299 invoked by uid 500); 15 Apr 2006 00:33:55 -0000 Delivered-To: apmail-geronimo-dev-archive@geronimo.apache.org Received: (qmail 31238 invoked by uid 500); 15 Apr 2006 00:33:54 -0000 Mailing-List: contact dev-help@geronimo.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: Reply-To: dev@geronimo.apache.org List-Id: Delivered-To: mailing list dev@geronimo.apache.org Received: (qmail 31227 invoked by uid 99); 15 Apr 2006 00:33:54 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Apr 2006 17:33:54 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [209.237.227.198] (HELO brutus.apache.org) (209.237.227.198) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 14 Apr 2006 17:33:53 -0700 Received: from brutus (localhost.localdomain [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id E677071429F for ; Sat, 15 Apr 2006 00:33:00 +0000 (GMT) Message-ID: <93986128.1145061180936.JavaMail.jira@brutus> Date: Sat, 15 Apr 2006 00:33:00 +0000 (GMT+00:00) From: "Aaron Mulder (JIRA)" To: dev@geronimo.apache.org Subject: [jira] Commented: (GERONIMO-1851) Proxy logic busted In-Reply-To: <112329522.1145051280334.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N [ http://issues.apache.org/jira/browse/GERONIMO-1851?page=comments#action_12374589 ] Aaron Mulder commented on GERONIMO-1851: ---------------------------------------- That is, appears to be caused by *a change to* BasicProxyManager.createProxy(name, ClassLoader) to include classes with an empty constructor in addition to interfaces (this was a change made in 1.1 but not HEAD). So I'm changing the behavior back to match HEAD. (I'm not touching the method where you give it a class or interface and it builds a proxy for exactly that.) The 1.1 behavior also had the side effect (in the console) of a lot of complaints that "interface 'concrete-class-name' could not be found in the specified class loader". I'll be just as happy to eliminate those by making this change. Assigned this issue to Dain because we discussed the issue previously before I realized that it had actual harmful side effects and I'd like him to review the change. (PostScript: Spoke to Dain and he blessed the change). > Proxy logic busted > ------------------ > > Key: GERONIMO-1851 > URL: http://issues.apache.org/jira/browse/GERONIMO-1851 > Project: Geronimo > Type: Bug > Security: public(Regular issues) > Components: kernel > Versions: 1.1 > Reporter: Aaron Mulder > Assignee: Dain Sundstrom > Priority: Critical > Fix For: 1.1 > > If you go to the Import/Export portlet in 1.1, you get this: > UNEXPECTED ERROR for class org.apache.geronimo.jetty.JettyWebAppContext$$EnhancerByCGLIB$$1b72c5bb (geronimo/welcome-jetty/1.1-SNAPSHOT/car?J2EEApplication=null,j2eeType=WebModule,name=geronimo/welcome-jetty/1.1-SNAPSHOT/car) > java.lang.ArrayIndexOutOfBoundsException: -1 > at org.apache.geronimo.kernel.basic.ProxyMethodInterceptor.createGBeanInvokers(ProxyMethodInterceptor.java:116) > at org.apache.geronimo.kernel.basic.ProxyMethodInterceptor.(ProxyMethodInterceptor.java:70) > at org.apache.geronimo.kernel.basic.BasicProxyManager.getMethodInterceptor(BasicProxyManager.java:317) > at org.apache.geronimo.kernel.basic.BasicProxyManager$ManagedProxyFactory.createProxy(BasicProxyManager.java:290) > at org.apache.geronimo.kernel.basic.BasicProxyManager.createProxy(BasicProxyManager.java:179) > at org.apache.geronimo.console.util.KernelManagementHelper.getModuleForConfiguration(KernelManagementHelper.java:850) > The error is generated at the last line of this snippet of ProxyMethodInterceptor: > invokers[getSuperIndex(proxyType, proxyType.getMethod("equals", new Class[]{Object.class}))] = new EqualsInvoke(kernel); > invokers[getSuperIndex(proxyType, proxyType.getMethod("hashCode", null))] = new HashCodeInvoke(); > invokers[getSuperIndex(proxyType, proxyType.getMethod("toString", null))] = new ToStringInvoke(proxyType.getName()); > if(GeronimoManagedBean.class.isAssignableFrom(proxyType)) { > invokers[getSuperIndex(proxyType, proxyType.getMethod("getState", null))] = new GetStateInvoke(kernel); > invokers[getSuperIndex(proxyType, proxyType.getMethod("getStateInstance", null))] = new GetStateInstanceInvoke(kernel); > invokers[getSuperIndex(proxyType, proxyType.getMethod("start", null))] = new StartInvoke(kernel); > In other words, it is returning a -1 from getSuperIndex on the "start()" method for the proxyType. However, the "if" statement established that ProxyType is assignable to GeronimoManagedBean, which has a "start()" method. > So it seems like the logic that constructs the invokers and/or whatever getSuperIndex uses is not finding all the methods that the proxy exposes, or else there are some classloader issues causing identical methods to be detected as different, etc. > The logic displayed above is unchanged from HEAD where the same portlet works, though the portlet code has changed significantly. I'm not sure what's different elsewhere in the ProxyMethodInterceptor class or the rest of the proxy infrastructure. > To replicate this, start Geronimo, and click the "Plugins" entry in the console. -- This message is automatically generated by JIRA. - If you think it was sent incorrectly contact one of the administrators: http://issues.apache.org/jira/secure/Administrators.jspa - For more information on JIRA, see: http://www.atlassian.com/software/jira