I did dig a little further and ame to this point:
|
| // try all name+suffix matches
| List<VirtualFile> files = vfsDeploymentUnit.getMetaDataFiles(name,
suffix);
| switch (files.size())
| {
| case 0 :
| return null;
| case 1 :
| return parseAndInit(vfsDeploymentUnit, files.get(0), root);
| default :
| return handleMultipleFiles(vfsDeploymentUnit, root, files);
| }
|
Seems that the lookup by name+suffix returns an empty list.
What I don't understand is why this behaves differently when I copy an archive to the
deploy directory when the server is running.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4214859#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...