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

konstantin.ermakov do-not-reply at jboss.com
Fri Nov 10 04:22:50 EST 2006


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 implements ServiceManagementI, ServiceI {
  | 
  |   public void start() {
  |     System.out.println("I am here!");
  |   }
  | 
  |   public void stop() throws Exception {
  |     System.out.println("Something...");
  |   }
  | 
  | }	 
  |  
  | 

And during the underploy it throws an exception, which I posted before.

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

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



More information about the jboss-user mailing list