Bugs item #511024, was opened at 2002-01-30 19:11
You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=376685&aid=511024&group_id=22866

Category: JBossMQ
Group: v3.0 Rabbit Hole
Status: Open
Resolution: None
Priority: 5
Submitted By: Wenwei Jiang (jww)
Assigned to: Nobody/Anonymous (nobody)
Summary: Exception when destroying Topic or Queue

Initial Comment:
JBossMQ throws exception when destroying Topic or 
Queue.

JBossMQService.java
public void destroyTopic(String name) throws Exception
   {
      try
      {      
         ObjectName topic = getTopicObjectName(name);
         getServer().invoke(getServiceControllerName(),
            "undeploy",
            new Object[] {topic},
            new String[] 
{"javax.management.ObjectName"});
      }
      catch (Exception e)
      {
         log.warn("Could not destroy the 
destination: ", e);
         throw e;
      }
   }

But ServiceControllerMean doesn't expose "undeploy" 
method.


----------------------------------------------------------------------

You can respond by visiting: 
http://sourceforge.net/tracker/?func=detail&atid=376685&aid=511024&group_id=22866

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to