[jboss-user] [EJB 3.0] - Re: Problems deploying a service under JBoss

2006-11-13 Thread konstantin.ermakov
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 __

[jboss-user] [EJB 3.0] - Re: Problems deploying a service under JBoss

2006-11-10 Thread ppoley
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

[jboss-user] [EJB 3.0] - Re: Problems deploying a service under JBoss

2006-11-10 Thread konstantin.ermakov
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

[jboss-user] [EJB 3.0] - Re: Problems deploying a service under JBoss

2006-11-09 Thread ppoley
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

[jboss-user] [EJB 3.0] - Re: Problems deploying a service under JBoss

2006-11-09 Thread konstantin.ermakov
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

[jboss-user] [EJB 3.0] - Re: Problems deploying a service under JBoss

2006-11-08 Thread ppoley
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?