Hi all,

When deploying Click-examples on JBoss 5, no js and css resources are deployed to the /click folder. Debugging into XmlConfigService gives a hint to the problem:


Enumeration<URL> en = classLoader.getResources("META-INF/resources/");
while (en.hasMoreElements()) {
  URL url = en.nextElement();
  System.out.println(url);
}

which prints:
vfszip:/C:/dev/jboss-5.1.0.GA/server/default/deploy/click-examples.war/WEB-INF/lib/click-core.jar/META-INF/resources/

Notice the strange "vfszip:" prefix. There is also no '!' character to delimit 
the jar.

Will need to change the checks we use to deploy resources. *grumble*

bob

Reply via email to