Hi, You have to check in the white list of JRE emulated classes if your class is in http://code.google.com/appengine/docs/java/jrewhitelist.html.
it seems that javax.naming.NamingExcetion is not is this list. So, to fix your error, you have to add a jar conataining this class (...and hope that this jar doesn't bring any further runtime dependencies to additional unsupported classes) That's the basic technical answer. But, on a higher level, it may be related to the way you want to use Spring on GAE: you would have then to provide more details in order to get more precise answers from this forum regards didier On Jan 3, 9:20 am, Viskaya Purbowo H <[email protected]> wrote: > Hi all, > > after i looked on application log, the error caused by > javax.servlet.UnavailableException: > org.springframework.beans.factory.BeanCreationException: Error creating bean > with name > 'org.springframework.context.annotation.internalPersistenceAnnotationProcessor': > Initialization of bean failed; nested exception is > java.lang.NoClassDefFoundError: javax/naming/NamingException > > is there any way to fix or enable it ? > > thank you -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" 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-appengine-java?hl=en.
