-
Bug
-
Resolution: Done
-
Minor
-
JBossAS-4.0.2 Final
-
None
-
Documentation (Ref Guide, User Guide, etc.)
Twiddle launch java.io.IOException: unknown protocol: resource
when info command is used to get the Log4j MBean jboss.system:service=Logging,type=Log4jService
To fix this problem add this code in the org.jboss.console.twiddle.Twiddle in the main class
String handlerPkgs = System.getProperty("java.protocol.handler.pkgs");
if (handlerPkgs != null)
else
{ handlerPkgs = "org.jboss.net.protocol"; }System.setProperty("java.protocol.handler.pkgs", handlerPkgs);
- relates to
-
JBAS-1708 Error obtaining some MBeanInfo instances via RMIAdaptor
- Closed