This
| if (aliases != null && aliases.contains(contextName) == false)
|
was also a bug.
It should be
| if (aliases == null || (aliases != null &&
aliases.contains(contextName) == false))
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4193130#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...