Hi, weird for NPE, probably cause you use a custom one so the info is not set since not in the default API (so i'd say that's normal)
about the presence of the file the loader is LazyStopLoader and the classloader: LazyStopWebappClassLoader. Just a name issue i guess *Romain Manni-Bucau* *Twitter: @rmannibucau <https://twitter.com/rmannibucau>* *Blog: **http://rmannibucau.wordpress.com/*<http://rmannibucau.wordpress.com/> *LinkedIn: **http://fr.linkedin.com/in/rmannibucau* *Github: https://github.com/rmannibucau* 2013/6/12 CThorburn <[email protected]> > Well that was interesting! I ended up copying the LazyStopWebappLoader > source > to my own implementation because it's missing from the current > tomee-catalina-1.6.0-SNAPSHOT. > > I had to tweak it slightly to prevent an NPE: > > @Override > protected synchronized void startInternal() throws LifecycleException { > // NPE! currentAppId = standardContext.getName(); > // to > currentAppId = getAppId(); // needed by classloader instantiated by > next line > > > which seems to work fine since to all burst into life. Thanks. > > > > -- > View this message in context: > http://openejb.979440.n4.nabble.com/Context-Loader-element-ignored-TOMEE-1-5-2-tp4663593p4663692.html > Sent from the OpenEJB User mailing list archive at Nabble.com. >
