RE: [JBoss-user] logging and admininstration

2002-02-19 Thread Adrian Brock
;t work for all properties. I think some are only checked by the JVM at start-up. Regards, Adrian >From: "Eric Kaplan" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Subject: RE: [JBoss-user] logging and admininstration >Date: Tue, 19 Feb 2002 07:10:47 -0500 > >

RE: [JBoss-user] logging and admininstration

2002-02-19 Thread Eric Kaplan
.sun.management.jmx.MBeanServerImpl.createMBean(MBeanServerImpl.ja >va:513) > at javax.management.loading.MLet.getMBeansFromURL(MLet.java:523) > at javax.management.loading.MLet.getMBeansFromURL(MLet.java:369) > at org.jboss.Main.(Main.java:182) > at o

RE: [JBoss-user] logging and admininstration

2002-02-19 Thread Adrian Brock
.jar in lib/ext? Don't put it in the classpath, it can't see the rest of the system from there, hence the other errors you report. Regards, Adrian >From: "Eric Kaplan" <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >CC: <[EMAIL PROTECTED]> >Subject: RE:

RE: [JBoss-user] logging and admininstration

2002-02-19 Thread Adrian Brock
rian Brock [mailto:[EMAIL PROTECTED]] >Sent: Monday, February 18, 2002 1:43 PM >To: [EMAIL PROTECTED] >Cc: [EMAIL PROTECTED] >Subject: Re: [JBoss-user] logging and admininstration > > >Here's some short answers. > >1) Stop on error >JBoss is designed to host many service

Re: [JBoss-user] logging and admininstration

2002-02-19 Thread Adrian Brock
> > 2) Log4j > > The best way to do logging for a bean (at the moment) > > private static final Category log = Category.newInstance(MyClass.class); > > > >The following accomplishes the same thing, and can be cut and pasted from >one source to the next. > >private static final Category log = >

Re: [JBoss-user] logging and admininstration

2002-02-18 Thread James Manning
[Guy Rouillier] > > 2) Log4j > > The best way to do logging for a bean (at the moment) > > private static final Category log = Category.newInstance(MyClass.class); > > > > The following accomplishes the same thing, and can be cut and pasted from > one source to the next. > >private static fi

Re: [JBoss-user] logging and admininstration

2002-02-18 Thread Guy Rouillier
> 2) Log4j > The best way to do logging for a bean (at the moment) > private static final Category log = Category.newInstance(MyClass.class); > The following accomplishes the same thing, and can be cut and pasted from one source to the next. private static final Category log = Category.getIns

RE: [JBoss-user] logging and admininstration

2002-02-18 Thread Eric Kaplan
here is no jar to copy to lib/ext. what should we do in this case? thanks eric -Original Message- From: Adrian Brock [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 1:43 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [JBoss-user] logging and admininstration H

RE: [JBoss-user] logging and admininstration

2002-02-18 Thread Eric Kaplan
ce for this? Thanks Eric -Original Message- From: Adrian Brock [mailto:[EMAIL PROTECTED]] Sent: Monday, February 18, 2002 1:43 PM To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Subject: Re: [JBoss-user] logging and admininstration Here's some short answers. 1) Stop on error JBoss i

Re: [JBoss-user] logging and admininstration

2002-02-18 Thread Adrian Brock
Here's some short answers. 1) Stop on error JBoss is designed to host many services concurrently. There is no mechanism to say one is critical and end the server. JBoss3.0 introduces the ideas of dependencies. If the database doesn't come up, neither will services that use it, instead they wait.