Return-Path: X-Original-To: apmail-geronimo-dev-archive@www.apache.org Delivered-To: apmail-geronimo-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 24C46943F for ; Fri, 16 Dec 2011 12:45:04 +0000 (UTC) Received: (qmail 84928 invoked by uid 500); 16 Dec 2011 12:45:03 -0000 Delivered-To: apmail-geronimo-dev-archive@geronimo.apache.org Received: (qmail 84777 invoked by uid 500); 16 Dec 2011 12:45:02 -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 84756 invoked by uid 99); 16 Dec 2011 12:45:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2011 12:45:02 +0000 X-ASF-Spam-Status: No, hits=-2001.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Dec 2011 12:44:52 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id A02081164A9 for ; Fri, 16 Dec 2011 12:44:30 +0000 (UTC) Date: Fri, 16 Dec 2011 12:44:30 +0000 (UTC) From: "Forrest Xia (Closed) (JIRA)" To: dev@geronimo.apache.org Message-ID: <653197028.19289.1324039470657.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Closed] (GERONIMO-5355) ClassCastException while starting snapshot (Stat Query) in G 215 Monitoring portlet through java client MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/GERONIMO-5355?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Forrest Xia closed GERONIMO-5355. --------------------------------- Resolution: Fixed Close it since the fix is in the 2.1 branch. > ClassCastException while starting snapshot (Stat Query) in G 215 Monitoring portlet through java client > ------------------------------------------------------------------------------------------------------- > > Key: GERONIMO-5355 > URL: https://issues.apache.org/jira/browse/GERONIMO-5355 > Project: Geronimo > Issue Type: Bug > Security Level: public(Regular issues) > Components: monitoring > Affects Versions: 2.1.5, 2.2.1 > Reporter: Amit Puri > Assignee: Vamsavardhana Reddy > Fix For: 2.1.8, 2.2.2 > > > In a java client where MBeanServerConnection is created and invoke startSnapshot method in Monitoring Portlet of G 215, Stat Query snapshot started but we can also find ClassCastException. > ... > ERROR [MasterRemoteControlJMX] org.tranql.connector.jdbc.TranqlDataSource$SelfReference incompatible with javax.sql.DataSource > java.lang.ClassCastException: org.tranql.connector.jdbc.TranqlDataSource$SelfReference incompatible with javax.sql.DataSource > at org.apache.geronimo.monitoring.MasterRemoteControlJMX.(MasterRemoteControlJMX.java:110) > at org.apache.geronimo.monitoring.snapshot.SnapshotProcessor.getMRC(SnapshotProcessor.java:148) > at org.apache.geronimo.monitoring.snapshot.SnapshotProcessor.takeSnapshot(SnapshotProcessor.java:59) > at org.apache.geronimo.monitoring.snapshot.SnapshotThread.run(SnapshotThread.java:103) > ... > In G 214, this exception does not come while using same java client. > These steps are followed in java client: > 1.Creating MBeanServerConnection object > ... > MBeanServerConnection mbServerConn; > JMXServiceURL serviceURL = new JMXServiceURL("service:jmx:rmi:///jndi/rmi://localhost/JMXConnector"); > Hashtable env = new Hashtable(); > String[] credentials = new String[2]; > credentials[0] = "system"; > credentials[1] = "manager"; > env.put(JMXConnector.CREDENTIALS, credentials); > > JMXConnector connector = JMXConnectorFactory.connect(serviceURL, env); > mbServerConn = connector.getMBeanServerConnection(); > .. > 2. Retrieving the mbean name to the agent-car-jmx plugin > .. > if(PATH == null) { > Set mbeanNames = mbServerConn.queryNames(new ObjectName("*:name=MasterRemoteControlJMX,*"), null); > for(Iterator it = mbeanNames.iterator(); it.hasNext(); ) { > String mbeanName = ((ObjectName)it.next()).getCanonicalName(); > if(mbeanName.contains("agent-car-jmx") && mbeanName.contains("MasterRemoteControlJMX") && mbeanName.contains("GBean")) { > PATH = mbeanName; > break; > }} > if(PATH == null) { > throw new Exception("[ERROR] Required mbean not found: agent-car-jmx"); > }} > .. > Here I am getting mbean name as "geronimo:J2EEServer=geronimo,ServiceModule=org.apache.geronimo.plugins.monitoring/agent-car-jmx/2.1.5/car,j2eeType=GBean,name=MasterRemoteControlJMX" > 3. Invoking startSnapshot > .. > long time = 300000; > int days = 2; > mbServerConn.invoke(new ObjectName(PATH),"startSnapshot", new Object[] { time, days }, new String[] { "java.lang.Long", "java.lang.Integer" }); > .. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira