[appengine-java] Re: Using app's ELResolver class

2010-04-08 Thread alesj
I tried all sorts of things -- implementing my own child-first classloader, then passing it around as Thread.getContextClassLoader, creating my listeners and servlets with it, but w/o success. The issue is, that JSF is already installed/deployed as part of custom Jetty/GAE initialization, hence

[appengine-java] Re: Using app's ELResolver class

2010-04-07 Thread alesj
While this finds the right jar URL url = cl.getResource(META-INF/maven/javax.el/el-api/ pom.properties); String info = url.toExternalForm(); System.out.println(info = + info); // jar:file:/foobar/projects/foobar/trunk/server/target/

Re: [appengine-java] Re: Using app's ELResolver class

2010-04-07 Thread Joel Weight
I ran into this a few months ago when first getting jsf 2 going. Unfortunately I didn't find a resolution and wound up on the old EL version, so if you figure something out, please let us know. Thanks, Joel On Wed, Apr 7, 2010 at 5:10 AM, alesj ales.jus...@gmail.com wrote: While this finds