[appengine-java] Re: Is there any way to instrument a class inside AppEngine?

2010-05-21 Thread Didier Durand
Hi Nacho, Did you try through the class loader ? The page http://code.google.com/appengine/docs/java/runtime.html says: Custom Class Loading Custom class loading is fully supported under App Engine. Please be aware, though, that App Engine overrides all ClassLoaders to assign the same

Re: [appengine-java] Re: Is there any way to instrument a class inside AppEngine?

2010-05-21 Thread Nacho Coloma
Yep, I did that but I am not happy with it. I will go through the details: I am toying with relations inside SimpleDS. Let's say that I have two entities, A and B: public class A { private Key bKey; public B getB() { throw new UnsupportedOperationException(); } } getB() exists