Tagged Questions
2
votes
3answers
2k views
How to solve validation error on xsi:noNamespaceSchemaLocation in jdoconfig.xml
Since I updated today to GAE 1.7.2.1, I'm having validation errors in eclipse in all my jdoconfig.xml files.
I have the default jdoconfig.xml content :
[...]
<jdoconfig ...
0
votes
1answer
69 views
Unable to persist object data in Google App Engine (Java)
I'm trying to persist my object but when I look in the dev console, not all of the properties on the objects are set. Some are null and some are missing. What is going wrong?
0
votes
1answer
380 views
A lot of weird warnings/info in GAE's log
I'm using Eclipse 3.7 with Google Plugin for developing GAE/J apps.
I often got a lot of weird warnings/infos in the log, e.g.:
org.datanucleus.plugin.NonManagedPluginRegistry resolveConstraints: ...
4
votes
2answers
799 views
App-Engine JDO consistent reading not working, maybe caching?
Today it's the first time I'm using GWT and JDO. I am running it with Eclipse in the local debug mode.
I do the following thing:
public Collection<MyObject> add(MyObject o) {
...
0
votes
1answer
805 views
How do I start debugging this JDO exception?
I get this set of exceptions from time to time when running my application in hosted mode in Eclipse. What's strange about it, is that it doesn't happen consistently. It will happen occasionally ...
0
votes
2answers
73 views
Where does jdo data go while running a war google appengine app in eclipse?
I'm using eclipse and google appengine plugin to develop a war app. I'm trying to use JDO persistency (per appengine rules). I'd like to be able to inspect, add and remove jdo objects my app uses. Is ...
3
votes
2answers
76 views
Where do Entities get saved if you run a GAE project in development mode?
I am running a GWT Web Application project in Eclipse with certain Entities that I make persisent using JDO. Where (on my file system) do these Entities actually get saved if I run the project in ...
3
votes
1answer
274 views
Problems while saving a pre-persisted object in Google App Engine (Java)
I am having problems while saving a pre-persisted JDO object in google-app-engine data store. Basically, in one servlet, I create the object and save it. In another servlet, I read the object, set a ...