Google App Engine is a cloud computing technology for hosting web applications in Google-managed data centers. Google App Engine is a Platform as a Service (PaaS) offering for Java, Python and Go (experimental).

learn more… | top users | synonyms (2)

6
votes
2answers
1k views

Google app engine How to count SUM from datestore?

Hey, Im wondering, how can i get a SUM of a rating entity i get from the datastore (python)? should i: ratingsum = 0 for rating in ratings: ratingsum + rating print ratingsum ?
0
votes
1answer
353 views

Setting up App Engine to receive email addresses with ids in the address

I am writing an App Engine app that is supposed to receive emails in this form: addcontact.someID@my-app.appspotmail.com (someID is an alphanumeric ID that I generate). I have this in my web.xml ...
3
votes
4answers
2k views

Is SMS the only way to register with Google App Engine?

I don't have a cell phone, but Google App Engine needs an SMS message to verify the account. Is there another way to complete the registration? I'm surprised they don't use a Gmail account to do ...
1
vote
1answer
365 views

GWT on iPhone 4.0 with 3G network

I have just encountered very strange problem - my GWT app hosted on Google App Engine does not want to work on iPhone over 3G, however it works fine over Wi-Fi. For testing I created empty GWT module ...
1
vote
2answers
113 views

Doing a global count of an object type (like Users), best practice?

I know keeping global counters is frowned upon in app engine. I am interested in getting some stats though, like once every 24 hours. For example, I'd like to count the number of User objects in the ...
0
votes
1answer
24 views

What is dbReferenceProperty?

In the python app engine docs, I see something called dbReferenceProperty. I can't understand what it is, or how it's used. I'm using the java interface to app engine, so I'm not sure if there's an ...
1
vote
1answer
479 views

How to retrieve Google App Engine entities by ancestor

I have the following 2 models in my Google App Engine datastore: class Search(db.Model): what = db.StringProperty() class SearchResult(db.Model): search = db.ReferenceProperty(Search) ...
1
vote
1answer
162 views

Multiple Django Instances on one AppEngine Server

For our project we host both the website and the actual webapp on one AppEngine instance. I separated them both nicely in different projects, but they all share the same settings file. It's becoming ...
5
votes
2answers
234 views

Feedback on availability with Google App Engine

We've had some good experiences building an app on Google App Engine, this first app's target audience are Google Apps users, so no issues there in terms of it being hosted on Google infrastructure. ...
0
votes
1answer
29 views

Instantiate a model when the kind of model needed is represented as a string argument

My input data is a string representing the kind of datastore model I want to make. In python, I am using the eval() function to instantiate the model (below code), but this seems overly complex so I ...
0
votes
2answers
93 views

how to send some data to the Thread module on python and google-map-engine

from google.appengine.ext import db class Log(db.Model): content = db.StringProperty(multiline=True) class MyThread(threading.Thread): def run(self,request): #logs_query = ...
1
vote
3answers
1k views

Unable to Display image in Google App Engine (Python)

I am unable to display images in pages created using Google App Engine(Python). My app.yaml file has : - url: /images static_dir: images And the python file has: ...
2
votes
1answer
133 views

How ugly is my code implementing polymorphic models?

I am using Polymorphic Models. Simple Question: My code below works without using this line below, which I see in other people's code. What is it supposed to do? #super(GeneralModel, ...
2
votes
5answers
2k views

how to write or create (when no exist) a file using python and Google AppEngine

this is my code: f = open('text/a.log', 'wb') f.write('hahaha') f.close() and it is not create a new file when not exist how to do this , thanks updated class MyThread(threading.Thread): ...
3
votes
2answers
3k views

Update query in google app engine data store (java)

How to use the update query in google app engine while using with gwt. I'm trying to make a chat application where apart from submitting and deleting the previous messages, the administrator can edit ...
5
votes
3answers
3k views

Best full-text search for google-app-engine

did you know the best full-text search on gae ? thanks
0
votes
1answer
229 views

Sending a password securely using gwt and app engine?

I set up session handling on a google app project. This is supposed to allow my users to login and maintain state across pages. I just dumped it into the default greeting service to try it out: ...
0
votes
1answer
273 views

Extend django.core.paginator Paginator to work with Google App Engine

How would one extend the Paginator class in django.core.paginator to work with Google App Engine queries?
1
vote
3answers
1k views

Integrate openid4java to GWT Project

I created an GWT project in eclipse. Now I tried to implement openId with using the openid4java library. I imported the .jar files via properties-->java build path: openid4java-0.9.5.jar ...
1
vote
2answers
304 views

Google App Engine Java app couldn't find javac?

I'm learning to use Google App Engine, I installed it in Netbeans, the project works, but when I clicked on "Deploy To Google App Engine", I got the following error : Beginning server interaction for ...
7
votes
1answer
3k views

Google App Engine: JSON module

I'm using JSON with Google App Engine. I'm using JSON for comunication, so on the Python side I have: import json The error I'm getting is this: <class ...
1
vote
1answer
1k views

Subqueries on Java GAE Datastore

I am trying to create a database of users with connection between users (friends list). There are 2 main tables: UserEntity (main field id) and FriendEntity with fields: - initiatorId - id of user ...
1
vote
2answers
1k views

Google app engine sessions now supported?

I thought google app engine did not support sessions (last time I checked was a few months ago). Now I was searching again for it and saw this: ...
0
votes
2answers
418 views

Google AppEngine with Silverlight client using Google Login

I'd like to use Google AppEngine with Silverlight client. I'm hoping to use the Google login authentication mechanism within the Silverlight client. Is this possible? Does anyone have any example ...
1
vote
1answer
466 views

google-app-engine deploy error

2010-04-20 15:33:39,421 WARNING appengine_rpc.py:399 ssl module not found. Without the ssl module, the identity of the remote host cannot be verified, and connections may NOT be secure. To fix this, ...
1
vote
1answer
110 views

where is the data store when i using google-app-engine on localhost

i want to find the data on my disk thanks
2
votes
1answer
220 views

how to get size of entity in google app engine without fetching the entity?

how to get size of entity in google app engine without fetching the entity ( with only key ? ) ?
14
votes
4answers
2k views

Appengine filter inequality and ordering fails

I think I'm overlooking something simple here, I can't imagine this is impossible to do. I want to filter by a datetime attribute and then order the result by a ranking integer attribute. When I try ...
7
votes
2answers
2k views

How to create local copy of GAE datastore?

I want to make client version of GAE app that store exact data of online version.(myapp.appspot.com) If i can use sdk instead, is any library or tools to sync online and sdk version? I try using ...
1
vote
1answer
58 views

Collapsing multiple trips to the datastore into a single trip?

Is there a way to merge multiple trips to the datastore into one trip? I have something like this: class User { @PrimaryKey private String mUsername; } class Horse { @PrimaryKey ...
1
vote
1answer
449 views

Good way of implementing a twitter-like follower system?

I'm trying to create a twitter-like follower system (users can follow one another). I'm confused about a good way to store the follower relationships. I'm using JDO (on google app engine). The first ...
1
vote
2answers
1k views

Redirecting domain (not google apps) to appengine

I'm building a application that supports different domains. A small CMS that supports different domains. But what I can't figure out is how to redirect other domains that's outside google apps. I ...
0
votes
1answer
2k views

ImportError: No module named _sqlite3

I'm writing for the Google App Engine and my local tests are getting the following error: --> --> --> Traceback (most recent call last): File "C:\Program ...
0
votes
2answers
294 views

Rails on Google App Engine - Error on OS X development machine

I'm running through the Ruby on Rails tutorial at http://guides.rubyonrails.org/getting_started.html (adjusting where appropriate for Google's App Engine). All is well up till section 6.3: when I try ...
3
votes
1answer
1k views

Using Java Executor on AppEngine causes AccessControlException

How do you get java.util.concurrent.Executor or CompletionService to work on Google AppEngine? The classes are all officially white-listed, but I get a runtime security error when trying to submit ...
0
votes
1answer
248 views

Adding a subdomain to my google app engine project?

I created a google app engine project. I just successfully mapped it to a new domain. The name of my project is "grape". So by default, it is published at http://www.grape.appspot.com. I mapped it to ...
3
votes
2answers
556 views

Java Appengine APPSTATS causing java out of memory error

I have several servlets in my java appengine app that do in memory sorting and take on the order of seconds to complete. These complete error free. However, I recently enabled appstats for appengine ...
3
votes
2answers
505 views

database design in google app engine

i am designing a simple project based to do list. the idea is to define tasks under project ( no workflow - just "task is completed" or not is required. ) in a hirarchial way. i.e. each task has ...
1
vote
2answers
267 views

GAE JCache NumberFormatException, will I need to write Java to avoid?

The code below produces a NumberFormatException in this line: val cache = cf.createCache(Collections.emptyMap()) Do you see any errors? Will I need to write a Java version to avoid this, or is ...
2
votes
2answers
282 views

How to store data to datastore - AppEngine

I am new to Python & AppEngine. I am trying to use Feedparser to cache a feed to a datastore. My code is at http://pastebin.com/uWPdWUm2 For some reason it doesn't work - it does not add the ...
0
votes
1answer
177 views

Google Datastore w/ JDO: Access Times?

I'm hitting what appears (to me) strange behavior when I pull data from the google datastore over JDO. In particular, the query executes quickly (say 100 ms), but finding the size of the resulting ...
2
votes
3answers
401 views

How can I implement “real time” messaging on Google AppEngine?

I'm creating a web application on Google AppEngine where I want the user to be notified a quickly as possible after certain events occour. The problem is similar to say a chat server in that I need ...
0
votes
1answer
104 views

Parent Included in Google App Engine Entity Groups

Short question: Is the parent of an entity group included in that entity group (i.e. can a transaction affect the parent of an entity as well as the entity itself)? Thanks.
1
vote
1answer
4k views

GQL query help - How can I write a query with where clause in GQL ? I am using google appengine datastore

I have three records in a table example: *Usernames* *email* *city* Nick nick@example.com London Vikky vicky@example.com Paris Lisa ...
1
vote
4answers
343 views

Will Google AppEngine support Javascript?

Does anyone know or have an opinion on whether AppEngine will add javascript as a supported language/framework and in what timeframe?
2
votes
1answer
266 views

How can I Query only __key__ on a Google Appengine PolyModel child?

So the situation is: I want to optimize my code some for doing counting of records. So I have a parent Model class Base, a PolyModel class Entry, and a child class of Entry Article: How would I query ...
-3
votes
1answer
85 views

remote_api in google app engine is the best way to store data? [closed]

i don't know what the remote_api will do thanks
-1
votes
2answers
119 views

Get and set data on Google App Engine

How can I store some data on Google App Engine? I'm using Django.
2
votes
3answers
5k views

Restlet vs Spring MVC for Restful web service

I'm researching how best to create a Restful web service on Google app engine. My end goal is to have an Android application call a web service on GAE to post and get data. At this point I not sure ...
0
votes
6answers
1k views

Where to get 1440 free cron jobs a day?

I'm making a program for my own use. In this program, I need to set up cron job. The cron job should run every minute (24 hr * 60 mins = 1440 times). Thus, I'll need to set up a cron job with a ...

1 328 329 330 331 332 371