[appengine-java] QueueFactory and NoClassDefFoundError

2010-04-22 Thread Felipe Quintella
Hello there. I'm new to Google AppEngine, but I'm already searched and can't find the answer to my problem. I am trying to add a task to the default taskqueue, but i keep getting a NoClassDefFoundError with the QueueFactory class... I can't find what the problem is. I have App Engine SDK 1.3.2 a

Re: [appengine-java] QueueFactory and NoClassDefFoundError

2010-04-22 Thread Max Ross (Google)
Make sure appengine-api-labs.jar is on your runtime classpath. Max On Wed, Apr 21, 2010 at 9:00 PM, Felipe Quintella < felipequintell...@gmail.com> wrote: > Hello there. > > I'm new to Google AppEngine, but I'm already searched and can't find > the answer to my problem. > > I am trying to add a t

Re: [appengine-java] QueueFactory and NoClassDefFoundError

2010-04-22 Thread Felipe Quintella Correia
I'll be sure it's on the runtime classpath as soon as I am home. Thank you Felipe Quintella 2010/4/22 Max Ross (Google) > > Make sure appengine-api-labs.jar is on your runtime classpath. > > Max > > On Wed, Apr 21, 2010 at 9:00 PM, Felipe Quintella < > felipequintell...@gmail.com> wrote: > >>

Re: [appengine-java] QueueFactory and NoClassDefFoundError

2010-04-23 Thread Max Ross (Google)
Hi Felipe, Can you print out the value of System.getProperty("java.class.path") while the app is running and see if that jar is listed? On Fri, Apr 23, 2010 at 1:56 PM, Felipe Quintella Correia < felipequintell...@gmail.com> wrote: > Hello again. > > Well, unless I'm overseeing something, I'm pr

Re: [appengine-java] QueueFactory and NoClassDefFoundError

2010-04-23 Thread Felipe Quintella Correia
Hi Max, Apparently it was on the classpath, but just after I added this line of code to the projected it stopped complaining about the missing class definition, and now, even after I deleted the print code it continue to run just fine =) I don't know why, but it solved my problem! Hehe Thanks aga