I've created my own URLClassLoader, and set it as the system classloader via java.system.class.loader. It's initialized and everything, but the classes I'm trying to load aren't found. Here's the ...
URLClassLoader
java.system.class.loader
It seems like I should be able to do this with a class loader derived from URLClassLoader that includes a loadClass():
public Class loadClass(String className, byte[] classBytes) throws ClassNotFoundException, NoClassDefFoundError { ...