On Sep 8, 2:16 pm, Deepak Singh <[email protected]> wrote: > Hi Mark, > > yes i refreshed the page but no luck. Also googling could not find an aswer > needed. > > Later i changed from jdk 1.6 to jdk 1.5 then i got a different error as > follows : > > SEVERE: Context initialization failed > org.springframework.beans.factory.CannotLoadBeanClassException: Error > loading class [org.gwtrpcspring.example.server.GreetingServiceImpl] for bean > with name 'greetService' defined in ServletContext resource > [/WEB-INF/applicationContext.xml]: problem with class file or dependent > class; nested exception is java.lang.UnsupportedClassVersionError: Bad > version number in .class file
That means you're trying to use a .class file (possibly within a .jar) in JDK 1.5 which was generated by 1.6. You can either recompile the offending class (org.gwtrpcspring.example.server.GreetingServiceImpl) or re-install JDK 1.6. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
