in code :/trunk/src/main/org/jboss/jms/server/DestinationJNDIMapper.java
there are two type errors.
maybe it should be:

  | 263 Set queues=new HashSet(queueMap.values());
  | 265 Set topics = new HashSet(topicMap.values());
  | 
source code as follows:

  |      67    // Map <name , destination holder>
  |      68    private Map queueMap;
  |      69    private Map topicMap;
  | 
  |     261    public void stop() throws Exception
  |     262    {
  |     263       Set queues = new HashSet(queueMap.keySet());
  |     264       
  |     265       Set topics = new HashSet(topicMap.keySet());
  |     266       
  |     267       // remove all destinations from JNDI
  |     268       for(Iterator i = queues.iterator(); i.hasNext(); )
  |     269       {
  |     270          unregisterDestination((ManagedDestination)i.next());       
  
  |     271       }
  |     272 
  |     273       for(Iterator i = topics.iterator(); i.hasNext(); )
  |     274       {
  |     275          unregisterDestination((ManagedDestination)i.next());
  |     276       }
  |     277 
  |     278       
initialContext.unbind(serverPeer.getDefaultQueueJNDIContext());
  |     279       
initialContext.unbind(serverPeer.getDefaultTopicJNDIContext());
  |     280 
  |     281       initialContext.close();
  |     282    }
  | 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3980962
_______________________________________________
jboss-user mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to