I simply downgraded to jboss-4.0.4, where it works fine.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3985424#3985424
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3985424
__
My problem turned out to be with "jboss-annotations-ejb3.jar"
I had one in "client/" and a different version in "server/default/lib/".
Removing it from lib got rid of my problem. Check on that.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3985017#3985017
In my situation I have the following:
| @Remote
| public interface ServiceI {
|
| }
|
| @Management
| public interface ServiceManagementI {
|
| public void start();
|
| public void stop() throws Exception;
|
| }
|
| @Service
| public class Service impleme
How's this work?
@Local
| public interface ServiceI {
|
| }
|
| @Remote
| public interface ServiceManagementI {
|
| public void start();
|
| public void stop() throws Exception;
|
| }
|
| @Stateless
| public class Service implements ServiceManagementI, Servic
After rewriting the service with the @Service, @Management annotations I
receive the following exception during the undeploy mechanism:
| 10:43:31,413 WARN [ServiceDelegateWrapper] Stopping failed
jboss.j2ee:jar=mypapp.jar,name=MyService,service=EJB3
| java.lang.RuntimeException: javax.man
Same problem here. If I remove these from my class:
@LocalBinding(jndiBinding = "ejb3/TicketBean/local")
| @RemoteBinding(jndiBinding = "ejb3/TicketBean/remote")
and this from my initializer:
@PostConstruct
then deployment will not throw up at me. However, I need those there. Any
ideas?