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)

0
votes
0answers
7 views

EndPoints API authentification on GAE python with an Android client

I want my android apps will communicate with my app engine server. I want that only authenticated user (google users) can access my EndPoints Api and to be stored in appengine using PYTHON. Here ...
0
votes
0answers
13 views

App Engine Launcher: 502 / Connection Refused on localhost

Sorry if I am posting a duplicate, but I have searched for a solution: I am writing my first GAE app with Python on Windows 7 and am following the Getting Started Hello World example found at ...
0
votes
0answers
8 views

Generate Cloud Endpoint: MyApp is not configured as a web application

I'm trying to create a new Google App Engine application. Within a brand new Android project, I added an App Engine project and all seems well. Now when trying to generate an endpoint for a class via ...
1
vote
0answers
16 views

read json object that has two arrays in python using GAE

I created a json object in jquery and sent it via ajax as a post request. I logged both the arrays and it has the correct format. $('#submittt').on('click', function () { var names = []; var ...
0
votes
0answers
12 views

Spring STS Jetty is running instead of Apache Tomcat 7

I am using Spring STS 3.10. I have following questions (when I run project as web application). 1- What is the difference between Run as -> "Run on Server" and Run as -> "Web Application" . 2- I ...
0
votes
0answers
11 views

Endpoint.Builder missing for generated cloud endpoint

I'm attempting to follow the example tutorial at https://developers.google.com/eclipse/docs/endpoints-addentities and I'm stuck figuring out how to get the GameEndpoint.Builder class to generate ...
0
votes
0answers
26 views

Extracting input from html with POST

I am trying to read in input(string from a file, 2 ints from text fields) from html in Google App Engine and put them into a function. The input section is: self.write('<form action="%s" ...
0
votes
1answer
16 views

Google App Engine serving MP3 for Audio Element needs Content-Range Header

So from what I can tell, when a page in Safari requests an MP3 for the Audio element, it will only play once unless it has a Content-Range header. Any ideas how to format a content Range Header ...
0
votes
1answer
16 views

GoogleAppEngine root:php failure(255)

Every time I run dev_appserver.py --php_executable_path /opt/local/bin/php-cgi54 phpintern/ under OS X, this error is returned: INFO 2013-05-24 01:59:15,523 sdk_update_checker.py:244] Checking ...
1
vote
0answers
31 views

Wordpress not running on GAE PHP, error PHP installation appears missing the MySQL extension, verified connection to local wordpress_db

Thank you in advance for answering... Have read other Stakeoverflow post but still not able to resolve the issue Objective: deploy wordpress 3.5.1 following GAE PHP tutorial. Have successfully ...
1
vote
1answer
14 views

How to disable URLs from PageSpeed Service on App Engine?

Some URLs should not be touched by PageSpeed Service. According to https://developers.google.com/appengine/docs/python/config/appconfig#pagespeed I just need to add those URLs to a url_blacklist field ...
0
votes
0answers
11 views

Is there a version of ereporter for Python 2.7

I'm a big fan of the Google App Engine ereporter module. It sends you an email every day with all the errors you logged. I'm creating a new app, and it defaulted to Python 2.7 and multithreaded, and ...
2
votes
1answer
29 views

Setting up php-sdk-gae with symfony2

I'm trying to run symfony2 with a hello world sample bundle inside php-sdk-gae. I'm following the instructions provided in https://developers.google.com/appengine/docs/php/ and I can run the demo ...
0
votes
0answers
29 views

App Engine: Error: [Errno 35] Resource temporarily unavailable

My AppEngine application uses urlfetch to hit a web server that I have running on a computer under my desk. Occasionally, the call fails with the following error, which I'm hoping you can help me ...
-1
votes
0answers
38 views

Google app engine, web scraping app [closed]

I want to scrape content from a website and republish it in a format that is optimized for mobile devices. I wish to use google app engine for this task. My question is how should I go about coding ...
1
vote
1answer
19 views

Structure web site for debug & production with minified JS using Google App Engine

I am using Eclipse J2EE with Google plugin for developing Java based web applications. I am also using GitHub private repository so that multiple developers can contribute to the development of the ...
1
vote
2answers
29 views

Cost advantage of removing a property from a model, without updating existing entities?

If I remove a property from my model, but don't update existing entities, will saving a new entity be cheaper (e.g. will need less write operations) than before?
1
vote
2answers
47 views

How to sort a list of class instances

I'm operating with GAE and memcache. For my list of books I make a key and store it in memcache in order to avoid hit database everytime I must view the list. When I add a new item to database, I add ...
0
votes
1answer
25 views

How to properly add OAuth headers for a QuickBooks API call in Google Go

I am just trying to get a proof of concept working to test a connection to the QB api for a QB Online account. I have never tried to make an OAuth connection before like this, so I'm not sure that I ...
-2
votes
0answers
18 views

How to migrate MediaWiki to GAE as Google now supports php

Is it possible at this point? any one tried it? Thanks!
0
votes
0answers
36 views

phpMyAdmin on Google App Engine

I am trying to install phpMyAdmin utilizing the php sdk kit. I am getting this error The mysqli extension is missing. Please check your PHP configuration. Also, wondering if anyone would have any ...
0
votes
0answers
18 views

Why google shuts down my residents instance even the minimum idling instance set to 1

I've just started playing with GAE. Today I just noticed that GAE shuts down my residents instance even the minimum idling instance set to 1, which causes a cold-start for the next request. So here ...
0
votes
1answer
30 views

How do I publish a django web app to Google App Engine from Visual Studio 2012

I am trying to set up a django application in Visual Studio 2012 that will publish to Google App Engine. I have a simple hello World Application set up in Visual Studio using pytools that I can run ...
0
votes
0answers
12 views

GAE: An error occurred for the API request datastore_v3.Next()

at a simple query with one filter like this: PersistenceManager pm = PMF.getFactory().getPersistenceManager(); Key userKey = KeyFactory.createKey(User.class.getSimpleName(), Long.parseLong(userId)); ...
0
votes
1answer
45 views

Error running Google app engine mobile back end client

I am following the tutorial Getting started with mobile backend. However when I try run the downloaded client I get the following exception: 05-23 14:48:49.960: E/AndroidRuntime(15384): FATAL ...
1
vote
0answers
26 views

From XML to template file- attributes starting with @

I'm stuck with sending xml to template engine in gae. I'm using a suggested xmltodict here http://stackoverflow.com/a/10199714/27186 The problem is at attribute level: ...
0
votes
0answers
79 views

Google App Engine Go - Reddit API returns error 429

I am trying to create a Reddit API in Golang in Google App Engine. My code: package RedditAPI import( "appengine" "encoding/json" "io/ioutil" "net/http" "appengine/urlfetch" ...
1
vote
1answer
29 views

Appengine: NameError when saving entity

I have the following model: class Book(ndb.Model): title = ndb.StringProperty() description = ndb.TextProperty() My handler: class UploadBookHandler(webapp2.RequestHandler): ...
0
votes
1answer
18 views

Google app engine and prediction API (error import)

Please help me to solve this error? I'm doing this exercise on app engine (https://developers.google.com/appengine/articles/prediction_service_accounts) , but I'm stuck in step 6.2 because I raise ...
0
votes
2answers
17 views

Memcached as opposed to DB?

I have a web app that runs a cron job at midnight everyday and then uses that data to populate an HTML template for the next 24 hours. I do not care about preserving the historical values, just ...
0
votes
0answers
23 views

My backbone view doesn't render anything on second run

I'm new to Backbone and I'm trying to replace my string concatenating with Backbone view render(). When my app starts for the first time with an empty localStorage it works fine and all the HTML gets ...
0
votes
1answer
27 views

users class in google apps engine 1.8

After upgrading to latest python gae-1.8, I got the following error on appspot.com: AttributeError: 'NoneType' object has no attribute 'email' The same code working fine from dev server. The actual ...
0
votes
0answers
11 views

d3 js renders plot in html generated by local server but not by GAE

I am using d3 js to plot an area curve -- it renders the plot well when the HTML is generated on local server (running w/ Django). But when ported to GAE, the resulting HTML produces "scrambled" ...
-1
votes
0answers
25 views

How to create new instance for existing project?

I am new to google app engine.I am try to deploy the django CRUD application in google app engine.Is it necessary to create an instance for django CRUD application ?. I have enabled the billing for ...
0
votes
1answer
20 views

BigQuery failed to import Data Store backup file via Google Cloud Storage

I was trying to load one of my data store table to BigQuery. When I found there is an option "AppEngine Datastore Backup" in the web ui of BigQuery, I'm very happy cause all my data are located in one ...
0
votes
3answers
26 views

What's the Google App Engine equivalent of ASP.NET's Server.Transfer?

Server.Transfer is sort of like a Redirect except instead of requesting the browser to do another page fetch, it triggers an internal request that makes the request handler "go to" another request ...
0
votes
0answers
18 views

Unable to run the default python app after installing Google App Engine

I see the following error in the log file: Exception in thread Thread-1: Traceback (most recent call last): File "threading.pyc", line 486, in __bootstrap_inner File "launcher\taskthread.pyc", ...
0
votes
1answer
35 views

How to upload the django-1.5 application in google app engine?

I have uploaded the my sample CRUD application in google app engine. But it riased error as shown below, Traceback (most recent call last): File ...
0
votes
1answer
33 views

How to hide sub-directories in the url with web2py

I am building a website on Google App Engine using web2py but I would like to show only the root domain to visitors. Here is an example to make it clear, if I go to www.domain.com/user, I am actually ...
0
votes
2answers
25 views

Forward appspot domain to my domain

Is there an easy way to forward my appspot domain to my domain. Basically redirect myappid.appspot.com to myappid.com. If people somehow find the appspot domain I don't want them using it. I am ...
0
votes
1answer
22 views

GAE cron every day between interval

I am trying to setup a gae cron task to run on certain days of the week as shown below for at least 10 mins Ideally the cron job should start at 10:30, then 10:35, 10:40, 10:45 then stop until next ...
0
votes
1answer
24 views

printing files in Google App Engine

I am trying to read and print a file in Google App Engine, but the code bellow seems unresponsive. I can upload the file, and my expectation was that it would just print the text, but it does nothing. ...
0
votes
0answers
21 views

Google JAVA app engine slow request process

I have a java app deployed on app engine. I'm encoutering a strange issue. The same request takes usually 700-1000 MS to be completed which is good as and should be, but from time to time randomly it ...
0
votes
2answers
23 views

Querying the Google App Engine Datastrore

I am trying to learn how to work with Google App Engine, I'm looking at their datastore example for querying here I have never done SQL, GQL or the like. So can someone please break down this string ...
0
votes
0answers
36 views

google app engine: Error: HTTPError

I am trying "Hello world" with python import webapp2 class MainHandler(webapp2.RequestHandler): def get(self): self.response.write('Hello world!') app = webapp2.WSGIApplication([ ...
0
votes
1answer
25 views

Google App Engine import NLTK error

I am trying to import NLTK library in Google App Engine it gives error, I created another module "testx.py" and this module works without error but I dont know why NLTK does not work. My code ...
0
votes
0answers
12 views

Google App Engine Launcher ImportError after upgrade

I upgraded GAE Launcher for Windows 1.8.0. Now when I try to run any program (python2.7) I get the following Import Error in the app engine launcher log: from email.utils import ( ImportError: No ...
1
vote
2answers
30 views

Can I build an IM Service client like GTalk in GAE?

i'm developing an app for people with communication disease. The point is that in my app i need that the user uses his gmail account to chat with his friends, like gmail gtalk service with helps to ...
0
votes
0answers
23 views

GAE : Resident front instance keeps shuting down from time to time

i have 1 resident F4 and i ping my app every 10 secondes on various places cause i have low traffic. I have a 15 sec pending latency. Like that my users almost all the time avoid cold starts and the ...
0
votes
0answers
29 views

Empty Package (model) in generated client jar

I have an app engine app that I want to expose its data to android app. I can test the endpoint's method just fine using curl/the explorer. However when I generated the android client using: ...

1 2 3 4 5 374