The error message literally means that there is no GWT module that defines a client source directory that includes javax.jdo.PersistenceManager
It's likely that you are trying to access the database from GWT client code, which isn't going to work because client code is compiled to javascript, and database access stuff is not generally GWT-compilable to javascript. Paul Bryan Harper wrote: > I have a simple app the I just got ready to persist some data with. > When I added the PMF.java file I got errors like the one below. > > [ERROR] Line 15: No source code is available for type > javax.jdo.PersistenceManager; did you forget to inherit a required > module? > > I've used the persistence manager setup without GWT and never had an > issue. I'm not sure what information about my app would be helpful, > but will be happy to provide whatever. > > Thanks, > Bryan > > -- > > 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. > > > > -- 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.
