Hello,

  I am doing a MBean where I need to get the ClassLoader of a
EjbModule.
  The EjbModule class has the method I need :

  public ClassLoader getClassLoader()

  but I need to call it using server.invoke, something like this :

      ObjectName name = new ObjectName(ejbModuleName);

      String[] sig = {};
      Object[] opArgs = {};

      ClassLoader o = (ClassLoader) server.invoke(name, "getClassLoader", opArgs, sig);

  but this donīt work because getClassLoader is not on the
EjbModuleMBean interface.
  So how can I do it ?

-- 
Best regards,
 Danilo                          mailto:[EMAIL PROTECTED]




-------------------------------------------------------
This SF.NET email is sponsored by: Thawte.com
Understand how to protect your customers personal information by implementing
SSL on your Apache Web Server. Click here to get our FREE Thawte Apache 
Guide: http://ads.sourceforge.net/cgi-bin/redirect.pl?thaw0029en
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to