Posted By:
Anonymous
Posted On:
Tuesday, July 16, 2002 03:11 AM
Hi folks, Does anybody know how to get an EventContext under weblogic? I have tried what every JNDI tutorial says, i.e. Object o = new InitialContext().lookup( "" ); EventContext ectx = ( EventContext ) o; ,nonetheless this raises a 'ClassCastException', for the object o returned is a 'weblogic.jndi.internal.WLContextImpl' , instance, which doesn't implement WebContext I have decompiled weblogic.jar to find that in fact there exists a WebContext implementation, called 'weblogic.jndi.internal.WLEventContextImpl' . But how to get it?
More>>
Hi folks,
Does anybody know how to get an EventContext under
weblogic? I have tried what every JNDI tutorial says, i.e.
Object o = new InitialContext().lookup( "" );
EventContext ectx = ( EventContext ) o;
,nonetheless this raises a 'ClassCastException', for the
object
o
returned is a
'weblogic.jndi.internal.WLContextImpl'
, instance, which doesn't implement
WebContext
I have decompiled weblogic.jar to find that in fact there
exists a
WebContext
implementation, called
'weblogic.jndi.internal.WLEventContextImpl'
. But
how to get it?
<<Less