Some time back I was trying to get the resources in database (to be precise image resource) in my SSJS / Java code. I tried a lot of options like ClassLoader.getResourceAsStream, MyClass.class.getResourceAsStream but no success. Then today while going through the sample database of Extension Library I ran into a piece of code which got the image resource as stream using a single line of code.var inStream:java.io.InputStream = facesContext.getExternalContext().getResourceAsStream("<RESOURCE NAME>"); As simple as that. In case of Java you would...