Message3520

Author mboersma
Recipients mboersma, shoyu
Date 2008-09-13.18:39:34
SpamBayes Score 1.1209571e-08
Marked as misclassified No
Message-id <1221331175.03.0.415173038099.issue1096@psf.upfronthosting.co.za>
In-reply-to
Content
This boils down to this line failing in oracle.jdbc.driver.OracleDriver:
       Class class1 =
Class.forName("oracle.as.jmx.framework.PortableMBeanFactory");

Running jython with the "--verify" flag silences the error.  Without
that flag, jython loads itself in the system classpath, which causes
problems with dynamic class loading from elsewhere in the CLASSPATH
heirarchy.  

So this is a much bigger issue.  In this particular case, the failure is
relatively benign because Oracle continues if it isn't able to register
the driver as an MBean, but the general problem will crop up elsewhere.
History
Date User Action Args
2008-09-13 18:39:35mboersmasetmessageid: <1221331175.03.0.415173038099.issue1096@psf.upfronthosting.co.za>
2008-09-13 18:39:35mboersmasetrecipients: + mboersma, shoyu
2008-09-13 18:39:35mboersmalinkissue1096 messages
2008-09-13 18:39:34mboersmacreate