[appengine-java] Re: java.lang.NoClassDefFoundError: org.apache.xerces.jaxp.SAXParserFactoryImpl is a restricted class

2011-10-14 Thread Köll S . Cherizard
Nevermind! I added xercesImpl.jar in my build path, making it available by checking 'system library' when the jar is added, and now it works:-) Bizzare, I don't remember removing this at all On Oct 12, 4:31 am, Köll S. Cherizard wrote: > Hey Gang! > > I am stumped on this one...  any idea on ho

[appengine-java] Re: java.lang.NoClassDefFoundError: for sample project ( CodeLabEx2.zip.)

2011-07-25 Thread John Patterson
make sure you have all the app engine libs in /WEB-INF/lib -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/QTTGn-_VOmAJ. To post to t

[appengine-java] Re: java.lang.NoClassDefFoundError: com.sun.org.apache.xerces.internal.dom.DocumentImpl

2011-05-06 Thread Brandon Donnelson
If you pulled the source code in, try renaming(refractor) the source make sure its referencing the correct class. Brandon Donnelson http://gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to th

[appengine-java] Re: java.lang.NoClassDefFoundError: javax/mail/Message

2011-01-14 Thread Alan Williamson
Allow me to answer my own question! Always the way, as soon as you give up hope, ask a question on a forum, you stumble on the answer. I had neglected to copy over the necessary jar files. *Your app must include appengine-api-*.jar (where * represents a version number of the API and SDK), a JA

[appengine-java] Re: java.lang.NoClassDefFoundError: java.rmi.server.UID ->>>>>using commons-fileupload-1.2.1.jar

2009-12-10 Thread Henry
Thanks Toby. On 9 Dec, 19:23, Toby Reyelts wrote: > http://code.google.com/appengine/kb/java.html#fileforms > > On Wed, Dec 9, 2009 at 12:44 PM, Henry wrote: > > Hi Guys, > > > Im trying to store and image with GWT to Google App engine, I'm using > > the packages: > >  commons-codec-1.4.jar > >

[appengine-java] Re: java.lang.NoClassDefFoundError: com/google/appengine/api/xmpp/JID

2009-11-22 Thread lallafa
My answers to your questions are in my post from 28. oct. I continued debugging my XMPP test app today. At first, the same error occurred. I tried Class.forName("com.google.appengine.api.xmpp.JID"). That worked. And now sending XMPP also worked! To find out, what caused the problems, I added the

[appengine-java] Re: java.lang.NoClassDefFoundError: com/google/appengine/api/xmpp/JID

2009-10-28 Thread lallafa
> Are you still seeing this error? Yes, I still see this error. > If so, which version of the SDK are you using? This is the SDK version: Release: 1.2.6 Timestamp: Wed Oct 07 19:34:04 CEST 2009 API versions: [1.0] java.vm.vendor: Sun Microsystems Inc. java.vm.version: 14.1-b02 java.version: 1

[appengine-java] Re: java.lang.NoClassDefFoundError: com/google/appengine/api/xmpp/JID

2009-10-27 Thread Jason (Google)
Are you still seeing this error? If so, which version of the SDK are you using? Did you change your SDK settings or update your SDK between the time when XMPP was working and when it started failing? Also, can you list the JARs in your war/WEB-INF/lib directory? - Jason On Sat, Oct 24, 2009 at 1

[appengine-java] Re: java.lang.NoClassDefFoundError: com/google/appengine/api/datastore/CompositeIndexManager

2009-10-21 Thread Dominik Steiner
Hi, I got the same error, can you try adding the following jars to your classpath appengine-api-stubs.jar appengine-api.jar appengine-local-runtime.jar HTH Dominik On Oct 20, 7:21 am, stanlick wrote: > I have configured my test environment according to the notes found > here. > > http://code.

[appengine-java] Re: java.lang.NoClassDefFoundError: javax.swing.tree.TreeNode is a restricted class.

2009-10-19 Thread Jason (Google)
We're looking into this now. The root cause appears to be a UI dependency in the Freemarker template system. For now, a workaround is available in this thread: http://groups.google.com/group/google-appengine-java/browse_thread/thread/dd84e44f604498c4 - Jason On Fri, Oct 16, 2009 at 8:03 PM, Abhi

[appengine-java] Re: java.lang.NoClassDefFoundError

2009-10-19 Thread Max Zhu
you can stub out this class into a separated module, say common module, which will be inherited by other modules in need. On Sun, Oct 18, 2009 at 11:00 AM, Sean Mitchell wrote: > > > A bit more searching turned up a workaround on this thread: > > http://groups.google.com/group/google-appengine-j

[appengine-java] Re: java.lang.NoClassDefFoundError: Could not initialize class freemarker.template.Configuration

2009-09-02 Thread Toby Reyelts
This looks like a bug. I believe you can work around it temporarily by patching BeansWrapper to call setAccessible on the enum Constructor. Can you please file an issue in our tracker? On Wed, Sep 2, 2009 at 7:30 PM, Hani Naguib wrote: > > The root exception seems to be: > > Nested in org.spring

[appengine-java] Re: java.lang.NoClassDefFoundError: Could not initialize class freemarker.template.Configuration

2009-09-02 Thread Alexander Orlov
On Sep 3, 2:29 am, Hani Naguib wrote: > Well it looks like something has changed today. Well, to be more precise, something has changed 2 hours ago. All instances of my Grails (and therefore also Spring) based app are down and responding with Server Error 500. Updating the app don't solve the pr

[appengine-java] Re: java.lang.NoClassDefFoundError: Could not initialize class freemarker.template.Configuration

2009-09-02 Thread Hani Naguib
Well it looks like something has changed today. I had to change EnumModels's constructor and class and make them public. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. To post to t

[appengine-java] Re: java.lang.NoClassDefFoundError: Could not initialize class freemarker.template.Configuration

2009-09-02 Thread 鱼雷导弹
I have the same problem, too. What happened? 09-02 05:49PM 42.341 Error for /home java.lang.NoClassDefFoundError: Could not initialize class freemarker.template.Configuration at jtweet.web.HomeServlet.getHomeTimeline(HomeServlet.java:82) at jtweet.web.HomeServlet.doGet(HomeServlet

[appengine-java] Re: java.lang.NoClassDefFoundError: Could not initialize class freemarker.template.Configuration

2009-09-02 Thread Hani Naguib
The root exception seems to be: Nested in org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'freemarkerConfig' defined in ServletContext resource [/WEB-INF/gae/gae-web.xml]: Invocation of init method failed; nested exception is java.lang.ExceptionInInitializer

[appengine-java] Re: java.lang.NoClassDefFoundError: Could not initialize class freemarker.template.Configuration

2009-09-02 Thread Hani Naguib
The exception has now changed to: (what is going on!) org.springframework.web.servlet.FrameworkServlet initServletBean: Context initialization failed org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'freemarkerConfig' defined in ServletContext resource [/WEB-

[appengine-java] Re: java.lang.NoClassDefFoundError

2009-09-02 Thread Jason (Google)
Please post the full stack trace. - Jason On Mon, Aug 31, 2009 at 9:17 PM, g wrote: > > I use freemarker as my template engine. > I have the freemarker.jar under the \war\WEB-INFO\lib > from this morning all my pages return 500 error: > java.lang.NoClassDefFoundError: Could not initialize class