I am trying to deploy a service in JBoss and getting an exception.  I don't understand 
why JBoss is trying to call an init method on MyApplication.  The class MyApplication 
extends ServiceMBeanSupport and it's MyApplicationMBean interface extends 
ServiceMBean.  How can I resolve this issue?

Here is the exception: 

14:18:56,198 ERROR [MainDeployer] could not create deployment: 
file:/C:/jboss-3.2.4/server/default/deploy/myapplication-service.xml
org.jboss.deployment.DeploymentException: create operation failed for package 
file:/C:/jboss-3.2.4/server/default/deploy/myapplication-service.xml; - nested 
throwable: (org.jboss.deployment.DeploymentException: 
net.myapplication.MyApplication.(); - nested throwable: 
(java.lang.NoSuchMethodException: net.myapplication.MyApplication.()))
        at org.jboss.deployment.SARDeployer.create(SARDeployer.java:227)
        at org.jboss.deployment.MainDeployer.create(MainDeployer.java:790)
        at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:644)
        at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:608)
        at sun.reflect.GeneratedMethodAccessor16.invoke(Unknown Source)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:324)
        at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
        at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
        at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
        at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
        at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
        at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
        at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
        at $Proxy7.deploy(Unknown Source)
        at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:304)
        at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:478)
        at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.doScan(AbstractDeploymentScanner.java:201)
        at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.loop(AbstractDeploymentScanner.java:212)
        at 
org.jboss.deployment.scanner.AbstractDeploymentScanner$ScannerThread.run(AbstractDeploymentScanner.java:191)

Caused by: org.jboss.deployment.DeploymentException: 
net.myapplication.MyApplication.(); - nested throwable: 
(java.lang.NoSuchMethodException: net.myapplication.MyApplication.())
        at org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:139)
        at org.jboss.system.ServiceController.install(ServiceController.java:198)
        at sun.reflect.GeneratedMethodAccessor21.invoke(Unknown Source)
        at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
        at java.lang.reflect.Method.invoke(Method.java:324)
        at 
org.jboss.mx.server.ReflectedDispatcher.dispatch(ReflectedDispatcher.java:60)
        at org.jboss.mx.server.Invocation.dispatch(Invocation.java:61)
        at org.jboss.mx.server.Invocation.dispatch(Invocation.java:53)
        at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
        at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:185)
        at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:473)
        at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:176)
        at $Proxy4.install(Unknown Source)
        at org.jboss.deployment.SARDeployer.create(SARDeployer.java:204)
        ... 19 more

Caused by: java.lang.NoSuchMethodException: net.myapplication.MyApplication.()
        at java.lang.Class.getConstructor0(Class.java:1929)
        at java.lang.Class.getConstructor(Class.java:1019)
        at org.jboss.mx.server.MBeanServerImpl.instantiate(MBeanServerImpl.java:870)
        at org.jboss.mx.server.MBeanServerImpl.instantiate(MBeanServerImpl.java:290)
        at org.jboss.mx.server.MBeanServerImpl.createMBean(MBeanServerImpl.java:317)
        at org.jboss.system.ServiceCreator.install(ServiceCreator.java:98)
        at 
org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:149)
        at org.jboss.system.ServiceConfigurator.install(ServiceConfigurator.java:114)
        ... 32 more




View the original post : 
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3840819#3840819

Reply to the post : 
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3840819


-------------------------------------------------------
This SF.Net email sponsored by Black Hat Briefings & Training.
Attend Black Hat Briefings & Training, Las Vegas July 24-29 - 
digital self defense, top technical experts, no vendor pitches, 
unmatched networking opportunities. Visit www.blackhat.com
_______________________________________________
JBoss-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to