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
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to