> Or a simpler thing to do at any point would be something like
> 
>     ClassLoader loader = Thread.currentThread().getContextClassLoader();
>     if (loader instanceof URLClassLoader) {
>         URL[] urls = loader.getURLs();

Make that
          URL[] urls = ((URLClassLoader)loader).getURLs();

>         for (int i = 0; i < urls.length; i++)
>             System.out.println(urls[i]);
>     }
> 
> I'm not 100% certain this will work, but it seems worth a try just to see
> what the classpath looks like.

Scott


Reply via email to