0
votes
1answer
20 views
appcfg.py upload_data is failing with expected <directory> even though I’ve got it
I am having trouble getting the bulk uploader to work. I have been
following the tutorial here:http://code.google.com/appengine/docs/
python/tools/uploadingdata.html.
When I ente …
0
votes
2answers
52 views
Google app engine authentication
Hi guys,
I would like my iphone app to store & get data from my app engine application, but how can i make sure only my app makes these requests?
Do i have to make a gmail ac …
0
votes
1answer
33 views
gqlQuery returns object, want list of keys
Is there a way to convert the GqlQuery object to an array of keys, or is there a way to force the query to return an array of keys? For example:
items = db.GqlQuery("SELECT __ke …
1
vote
2answers
34 views
Running AppEngine locally (while debugging), how do I erase the data?
I'm working on a Google AppEngine project and I've changed my data format, so the old data needs to be wiped out. On AppSpot that's no problem: I use the data viewer to clobber it …
0
votes
1answer
72 views
Roles in Java Google App Engine
Does anyone have any recommendations for me on how to manage user roles on the Java version of Google App Engine?
0
votes
3answers
55 views
Environment on google Appengine
Hi,
does someone have an idea how to get the environment variables on Google-AppEngine ?
I'm trying to write a simple Script that shall use the Client-IP (for Authentication) an …
0
votes
4answers
70 views
How do I upload data to Google App Engine periodically?
I'm writing an aggregation application which scrapes data from a couple of web sources and displays that data with a novel interface. The sites from which I'm scraping update every …
0
votes
1answer
21 views
Transactions behaviour when request times out. [google app engine]
Google app engine has this useful little function in its db class,
db.run_in_transaction()
Which is suppose to garentee that your method will be rolled back if an exception is …
0
votes
2answers
55 views
Google App Engine proxy
What would be the simplest implementation of a proxy written for GAE, which relays every URL (including POST, and header data) to a remote HTTP host, and return with it's result (w …
0
votes
2answers
48 views
Can you use Google App Engine to send emails from an application hosted elsewhere?
I need to send emails from my web application (on account creation, password reset, etc.). This application will most likely be hosted on a standard hosting site (or possibly on A …
0
votes
1answer
36 views
Google app engine: “Stay signed in” expires too soon
I have a small app written in Google App Engine, and I use the basic login: required in app.yaml for authentication. This gives me the Google login box, which has the "Stay signed …
1
vote
2answers
95 views
Does Google App-Engine supports flash message ?
Hi,
I am using grails 1.1.1 in my application.Flash messages ,like student id created, of my application working fine in local,but when i am updating to app-engine in server flash …
1
vote
2answers
45 views
AppEngine: Will the items stored in a StringListProperty always remain in the same order?
After looking through the docs on App Engine and the StringListProperty or the ListProperty I can't seem to find whether there is a guarantee on the order of the items in the list. …
0
votes
1answer
24 views
Which Property type do I use to put a User’s user_id() in the Datastore?
This is why I need to put user_id()'s in the Datastore:
A User value in the datastore does not
get updated if the user changes her
email address. This may be remedied in
…
0
votes
1answer
24 views
AppEngine: scheduled tasks per Application or per Application Instance?
From what I gather, AppEngine fires up "Application Instances" (for a lack of better terminology that I know of) as a function of demand on the said application.
Now, let's say …
