On Fri, Aug 9, 2013 at 2:28 PM, VB <[email protected]> wrote: > well my understanding is that the code written in Noteendpoint.java (that > was automatically generated from the Note.java on selecting Create > Endpoint) is actually doing the writing part to the datastore. > Below is the code for the Noteendpoint.java that was generated. > As seen in the my code inside the EndpointsTask class, it invokes > Noteendpoint.insertNote (highlighted in Bold below) to do the insertion of > Note into the datastore. > >
If the code is being automatically generated by App Engine's endpoint services, then it's good. I wonder if your client is successfully pushing the messages to the server; do you see any requests recorded in GAE's server logs? You can also try installing appstats ( https://developers.google.com/appengine/docs/java/tools/appstats ), it records all calls to the datastore so you can see if any entities are being stored. ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
