My File is located at:
<JBOSS_HOME>/standalone/deployments/mycompany.war/META-INF/myfile.xml
The Class which is trying to lookup the file is inside a jar file at:
<JBOSS_HOME>/modules/com/mycompany/lib/main/mycompany.jar
The code snippet looks like:
Thread.currentThread().getContextClassLoader().getResourceAsStream("META-INF/myfile.xml"))
This returns null.
Why? I'm lost!