Yeah, my ant build.xml wasn't seeing it so it wasn't compiling, thnxs.

----- Original Message -----
From: "David Jencks" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, September 20, 2002 6:44 AM
Subject: Re: [JBoss-user] mbean not registered


> I doubt the code you show compiles, since the class doesn't implement the
> createScheduler method in the interface it allegedly implements.
>
> david jencks
>
>
> On 2002.09.20 00:37:20 -0400 G.L. Grobe wrote:
> > I'm still having problems getting a simple MBean to deploy. Below is the
> > errors I'm getting and the MBean code itself.
> >
> > Any help much appreciated.
> >
> > --- jboss 3.0.2 error output
> >
> >  01:08:39,319 INFO  [MainDeployer] Starting deployment of package:
> >
file:/u/public/jboss/jboss-3.0.2/server/default/deploy/acaiis-scheduler-serv
ice.xml
> > 01:08:39,529 ERROR [URLDeploymentScanner] Failed to deploy:
> > org.jboss.deployment.scanner.URLDeploymentScanner$DeployedURL@23d7cabd{
> >
url=file:/u/public/jboss/jboss-3.0.2/server/default/deploy/acaiis-scheduler-
service.xml,
> > deployedLastModified=0 }
> > org.jboss.deployment.DeploymentException:
DefaultDomain:service=Scheduler
> > is not registered.; - nested throwable:
> > (javax.management.InstanceNotFoundException:
> > DefaultDomain:service=Scheduler is not registered.)
> >         at org.jboss.deployment.SARDeployer.create(SARDeployer.java:227)
> >         at
org.jboss.deployment.MainDeployer.create(MainDeployer.java:755)
> >         at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:615)
> >         at
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:580)
> >         at java.lang.reflect.Method.invoke(Native Method)
> >         at
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispat
cher.java:284)
> >
> > ---
> >
> > public class Scheduler extends org.jboss.system.ServiceMBeanSupport
> >       implements SchedulerMBean
> > {
> >    private String name;
> >
> >    public boolean createService() {
> >
> >       System.out.println("Creating MBean ...........");
> >       log.info(Scheduler.class, "Creating MBean ...........");
> >
> >       SchedulerFactory schedFact = new StdSchedulerFactory();
> >       Scheduler sched = schedFact.getScheduler();
> >
> >       sched.start();
> >
> >       return true;
> >    }
> >
> >    public String getName() {
> >       return "Scheduler name = " + name;
> >    }
> >
> >    public void startService()() throws Exception {
> >       log.info(Scheduler.class, "Starting Scheduler Service MBean
> > ...........");
> >       System.out.println("starting MBean ...........");
> >    }
> >
> >    public void stopService() throws Exception {
> >       log.info(Scheduler.class, "Stopping Scheduler Service MBean
> > ...........");
> >       System.out.println("stoping MBean ...........");
> >    }
> > }
> >
> > ----------
> >
> > public interface SchedulerMBean extends org.jboss.system.ServiceMBean
> > {
> >    public void start() throws Exception;
> >    public void stop() throws Exception;
> >    public boolean createScheduler() throws Exception;
> > }
> >
> >
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> > <HTML><HEAD>
> > <META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
> > <META content="MSHTML 6.00.2719.2200" name=GENERATOR>
> > <STYLE></STYLE>
> > </HEAD>
> > <BODY bgColor=#ffffff>
> > <DIV><FONT face=Arial size=2>I'm still having problems getting a simple
> > MBean to
> > deploy. Below is the errors I'm getting and the MBean code
> > itself.<BR><BR>Any
> > help much appreciated.<BR></FONT></DIV>
> > <DIV><FONT face=Arial size=2>--- jboss 3.0.2 error output</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;01:08:39,319 INFO&nbsp;
[MainDeployer]
> >
> > Starting deployment of package:
> >
file:/u/public/jboss/jboss-3.0.2/server/default/deploy/acaiis-scheduler-serv
ice.xml<BR>01:08:39,529
> >
> > ERROR [URLDeploymentScanner] Failed to deploy: <A
> >
href="mailto:org.jboss.deployment.scanner.URLDeploymentScanner$DeployedURL@2
3d7cabd">org.jboss.deployment.scanner.URLDeploymentScanner$DeployedURL@23d7c
abd</A>{
> >
> >
url=file:/u/public/jboss/jboss-3.0.2/server/default/deploy/acaiis-scheduler-
service.xml,
> >
> > deployedLastModified=0 }<BR>org.jboss.deployment.DeploymentException:
> > DefaultDomain:service=Scheduler is not registered.; - nested throwable:
> > (javax.management.InstanceNotFoundException:
> > DefaultDomain:service=Scheduler is
> > not registered.)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; at
> >
org.jboss.deployment.SARDeployer.create(SARDeployer.java:227)<BR>&nbsp;&nbsp
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > at
> >
org.jboss.deployment.MainDeployer.create(MainDeployer.java:755)<BR>&nbsp;&nb
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > at
> >
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:615)<BR>&nbsp;&nb
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > at
> >
org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:580)<BR>&nbsp;&nb
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> >
> > at java.lang.reflect.Method.invoke(Native
> > Method)<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; at
> >
org.jboss.mx.capability.ReflectedMBeanDispatcher.invoke(ReflectedMBeanDispat
cher.java:284)<BR></FONT></DIV>
> > <DIV><FONT face=Arial size=2>---</DIV></FONT>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>public class Scheduler extends
> > org.jboss.system.ServiceMBeanSupport<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > implements SchedulerMBean<BR>{<BR>&nbsp;&nbsp; private String
> > name;</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp; public boolean createService()
> > {</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > System.out.println("Creating MBean
> > ...........");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > log.info(Scheduler.class,
> > "Creating MBean ...........");</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > SchedulerFactory
> > schedFact = new StdSchedulerFactory();<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > Scheduler sched = schedFact.getScheduler();</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > sched.start();</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return
> > true;<BR>&nbsp;&nbsp; }</FONT></DIV>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp; public String getName()
> > {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; return "Scheduler name = " +
> > name;<BR>&nbsp;&nbsp; }</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp; public void startService()()
> > throws
> > Exception {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; log.info(Scheduler.class,
> > "Starting Scheduler Service MBean
> > ...........");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > System.out.println("starting
> > MBean ...........");<BR>&nbsp;&nbsp; }</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>&nbsp;&nbsp; public void stopService()
> > throws
> > Exception {<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; log.info(Scheduler.class,
> > "Stopping Scheduler Service MBean
> > ...........");<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
> > System.out.println("stoping
> > MBean ...........");<BR>&nbsp;&nbsp; }<BR>}<BR></FONT></DIV>
> > <DIV><FONT face=Arial size=2>----------</DIV></FONT>
> > <DIV><FONT face=Arial size=2></FONT>&nbsp;</DIV>
> > <DIV><FONT face=Arial size=2>public interface SchedulerMBean extends
> > org.jboss.system.ServiceMBean<BR>{<BR>&nbsp;&nbsp; public void start()
> > throws
> > Exception;<BR>&nbsp;&nbsp; public void stop() throws
> > Exception;<BR>&nbsp;&nbsp;
> > public boolean createScheduler() throws
> > Exception;<BR>}<BR></DIV></FONT></BODY></HTML>
> >
>
>
> -------------------------------------------------------
> This sf.net email is sponsored by:ThinkGeek
> Welcome to geek heaven.
> http://thinkgeek.com/sf
> _______________________________________________
> JBoss-user mailing list
> [EMAIL PROTECTED]
> https://lists.sourceforge.net/lists/listinfo/jboss-user
>



-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to