google-app-engine

How to modify attributes of forms generated by webapp (Google App Engine)?

Here are model and form classes from example: http://code.google.com/appengine/articles/djangoforms.html class Item(db.Model): name = db.StringProperty() quantity = db.IntegerProperty(default=1) target_price = db.FloatProperty() priority = db.StringProperty(default='Medium',choices=[ 'High', 'Medium', 'Low']) entry_time =...

Appengine and GWT - feeding the python some java

I realize this is a dated question since appengine now comes in java, but I have a python appengine app that I want to access via GWT. Python is just better for server-side text processing (using pyparsing of course!). I have tried to interpret GWT's client-side RPC and that is convoluted since there is no python counterpart (python-gw...

Datastore & 30 second request limit

I'm writing an Appengine app: one of its duties is to email all the users every night (I know that I'll have to enable billing to email many users -- that's no problem). I'm just worried about the 30-second request limit; if I have thousands of users and I have to mail them all a daily reminder, won't that limit be hit sometime soon? ...

Google app engine tutorial problem - new datastore model

So i've just finished the google app engine greetings tutorial. All well so far. I then decided to try and add a new datastore model and then set it in the existing handler. I added a 2nd content field called "content2" and then tried to set it in the handler Guestbook(), but it keeps borking out. I'm sure it will be the silliest error, ...

How to configure Tomcat to run an Google App Engine + GWT application on Mac OS X?

Does anyone know a good tutorial on this? What Tomcat version must be used? ...

Storing a directed graph in google appengine datastore

I need to store a large and dynamic undirected graph in google appengine, what's the best way to do this? The graph representation must be able to support rapidly pulling out a set of vertices (for rendering on a page) and all the links from a specific vertex, and pathfinding across the graph (although the optimal path isn't really neede...

How can I run the example project of Google App Engine + GWT in Eclipse?

Ive installed the Google Plugin for Eclipse and created a demo project using App Engine and GWT. Now I want to launch and see it. But after compile nothing else happens. Shouldn't there be an integrated browser that shows the app? ...

are there video training or tutorial videos on gwt + app engine?

i want to learn it! please if you know good videos, post links. Want to do it with Java, since I know already a little bit about it. ...

Is index building always complete when a POST or PUT HTTP request returns in google app engine?

Very simply, I wish to know if (in google app engine): When I make a POST or PUT HTTP request. And the POST or PUT creates a change to the google app engine database After the POST or PUT request returns Is there a guarantee that the index has been updated to reflect the changes made? There is a explanation here about what happens wh...

Is it possible to install SSL on Google app engine for iPhone application?

I am using python language for google app engine based iphone application .I want to install/access ssl on python. I am unable to find a way to install/enable it in python file. please guide me how can I make my application to connect to ssl As I want to Apple enable push notification services on my application Its urgent. ...

how to download google appengine (uploaded)application files

I need to download the application files that are deployed using command prompt into google appengine server. if anybody know about this plz tell me! thanks in advance! ...

When to use a certain type of persistence in Google App Engine?

First of all I'll explain the question. By persistence, I mean storing data beyond the execution of a single request. It might not be the best question title, so feel free to edit it. The way I see it, there are three types of persistence in GAE, each one "closer" to the request itself: The datastore This is where all data is most l...

Web Services with Google App Engine

I see that Google App Engine can host web applications that will return html, etc. But what about web services that communicate over http and accept / return xml? Does anyone know how this is being done in Goggle App Engine with Python or for that matter in Java (JAS-WX is not supported)? Any links o samples or articles is greatly appr...

What's a Java alternative to Google App Engine for developing iPhone Push Notification services?

I'm a Java programmer who is working on an iPhone application. I'd like it to use Push Notification services. I originally thought I could use Google App Engine to provide the payloads to Apple, but I see now that it won't be possible because App Engine doesn't support the low-level socket programming that is needed to communicate with...

Most efficient way to match a certain number of items in a db.Model ListProperty

In reference to this different but not unrelated question I will borrow the example models. class Foo(db.Model): bars = db.ListProperty(db.Key) class Bar(db.Model): pass If I have a certain Foo entity and I want to get all of the other foo entities also containing a certain bar Key in its bars ListProperty, I would use the following...

Is there any other way to create an application in google app engine? [Closed]

I want to create an application in google app engine using php, Is there any way to login in to my google account using php and create an application dynamically. ...

Converting an Eclipse Java project to a Google AppEngine one

I have a project with a large amount of pre-processing. I have written this part and would now like to convert the project to a GAE project. I have enabled the GAE support in Project->Properties and have some functionality but when I want to testrun the app I get a "Web application archive directory does not exist." Is there a way to ...

using google map after logging

I have a project witch is using googleMap, when I used localhost googleMap works correctly and anythings is OK, but when I deploy it on the other computer the site can not work(don't show google map!!!). I got a valid key but stil this problem exists! please help me! ...

Google app engine - structuring model layout with regards to parents?

How does one go about structuring his db.Models effectively? For instance, lets say I have a model for Countries, with properties like "name, northern_hemisphere(boolean), population, states (list of states), capital(boolean). And another model called State or county or something with properties "name, population, cities(list of cities...

Efficient 1:n Relation in Google App Engine Datastore

In our system every user can write any other user a message. The first obvious idea is a data model like this: User username email ... more properties Message user_from_FK user_to_FK text creation-date ... more properties So a message stores the User-Key as a FK in a tradition database. Like (for simplicity visualised as a t...