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).
11
votes
0answers
113 views
using blobstore with google cloud endpoint and android
I am developing an app-engine connected android project using the eclipse plugin. One aspect of the app is to allow user Alpha to send pictures to user Bravo. To do that I have the following setup:
...
8
votes
0answers
200 views
Committed JDO writes do not apply on local GAE HRD, or possibly reused transaction
I'm using JDO 2.3 on app engine. I was using the Master/Slave datastore for local testing and recently switched over to using the HRD datastore for local testing, and parts of my app are breaking ...
5
votes
0answers
268 views
Do I seriously need to install Xcode and compile PyObjC as a result of 1.7.6 update?
There must be an easier way.
I get this warning when attempting to start my app today:
...
4
votes
0answers
57 views
combining blob servlet with endpoint api
Here is my web.xml
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<web-app xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
...
4
votes
0answers
346 views
Running out of PermGen space when using DeferredTasks in GAE 1.7.3
I switched to Google App Engine Java SDK 1.7.3 recently. Since then, I am running out of PermGen space every time I am submitting DeferredTasks into the task queue.
This does not happen when the app ...
4
votes
0answers
348 views
Google App Engine: Error in bulkloader.yaml
I am currently trying to download and exports tables from a Google App that I inherited. I am using their Python Framework.
Here are the relevant lines in the bulkloader.yaml file:
- kind: KindName
...
4
votes
0answers
269 views
On Google App Engine, can I relate a Google OAuth 2 Token and a SACSID token I got using Android's AccountManager?
I am writing a Google App Engine application along with a CLI client, an Android client and a Javascript client. The purpose of this application is to allow one to control an Android phone on which ...
4
votes
0answers
394 views
How to set property defaults using the bulk uploader
I've found that properties do not get created with default values in Model entities that are created via the bulk uploader. Any ideas why this is the case?
If I wanted to set a property value ...
4
votes
0answers
1k views
Channel API closes a channel
First off, thank you @Moishe for the very useful API. I'm having a little timeout problem, maybe someone knows the answer. Here's how I open the channel:
var openChannel = function () {
var ...
3
votes
0answers
54 views
Local dev server crash and delete entity during a query
While querying a ndb entity with the following code
return cls.query(cls.name == name, cls.deleted == False).get()
The dev server crashes, and the entity I was querying for suddenly disappears from ...
3
votes
0answers
109 views
error in App Engine connected android project
I downloaded the Google plugin for eclipse with all the necessary tools. When I create in eclipse a new 'App engine connected android' Project there are immediately the following 4 errors (without ...
3
votes
0answers
143 views
dev-server HTTP Error 403: Forbidden
After updating from 1.7.5 (where everything worked fine) I'm getting a HTTP Error 403: Forbidden when trying to open any sites via localhost. Strange thing is I have pretty much the same setup at home ...
3
votes
0answers
70 views
How to get the created filename when a user uploads a file to Google Cloud Storage?
When a user uploads an image to Google Cloud Storage, I need to get the filename (hashed name in the Cloud, not user's filename) to be able to delete the file after.
I've read the issue:
...
3
votes
0answers
158 views
App Engine 1.7.5 does not create new local_db.bin datastore file
I just updated to GAE SDK 1.75 from 1.6.1. I deleted the local_db.bin so that a new one would be created by app engine. My app gets deployed fine to the local dev app server. However, when I send a ...
3
votes
0answers
127 views
Why is an entity not being fetched from NDB's in-context cache?
I have an entity that is used to store some global app settings. These settings can be edited via an admin HTML page, but very rarely change. I have only one instance of this entity (a singleton of ...
3
votes
0answers
125 views
Is there a function to find the current handler for the named route in my app
I can get the currect app / WSGI instance with : webapp2.get_app() and the current request instance : webapp2.get_request() but how to get the current webapp2 handler instance from :
class ...
3
votes
0answers
154 views
App-Engine Parse a UrlFetch UTF-8 encoded stream
I am trying to parse an XML from a URL using the xml.sax parser. I know there are other libraries to use but coming from Java this is the one I am most familiar with and seems the least complicated to ...
3
votes
0answers
161 views
Can the AppEngine SQLite datastore work with Django SQLite backend?
With the release of AppEngine 1.7.3, soon the SQLite datastore stub will be default for the Python SDK. Any plans to give users using Django and Cloud SQL the ability to use the SQLLite datastore with ...
3
votes
0answers
296 views
AppEngine error 400 when requesting access token
I'm writing a Delphi based PC application which accesses an AppEngine servlet. I'm trying to use the OAuth 1.0 dance to authenticate users and allow access to a restricted part of the application.
I'm ...
3
votes
0answers
568 views
GAE: Access denied exception causing error on persistence provider
I just upgraded to GAE SDK 1.7.1 and now I'm trying to use JPA 2 in my [former] functioning project.
When I try to use the Entity Manager it throws the following exception:
...
3
votes
0answers
279 views
Google App Engine - Link for Datastore Admin gives Error: Not Found
In Google App Engine when I click on Datastore Admin for an application I get an error like this (where APPID is my application ID):
Error: Not Found
The requested URL ...
3
votes
0answers
408 views
Not able to delete a blob - GAE Java
With a proper Blob Key, I'm not able to delete a blob entry.. here is my code
BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService();
BlobKey blobKey = new ...
3
votes
0answers
210 views
Could not find job with ID in AppEngine Datastore Admin (entity delete operation)
I tried to delete an entity type in the datastore from the Datastore Admin console in appengine. After I started the delete operation, I clicked on the job link to check the status, but it's showing:
...
3
votes
0answers
746 views
Problems using Maven to initialize a local thoughtsite (App Engine sample) project in Eclipse
This sample app ("thoughtsite") for App Engine contains a pom.xml in its trunk:
http://code.google.com/p/thoughtsite/source/browse/#svn/trunk
I ran mvn eclipse:eclipse and also tried using m2eclipse ...
2
votes
0answers
26 views
GAE MapReduce ShufflePipeline causes TaskTooLargeError
I'm trying to run a standard MapReduce job over a datastore. The Map Pipeline goes through fine, but then the job gets stuck in the ShufflePipeline. I'm getting about eight of these error logs:
...
2
votes
0answers
61 views
Can you reopen GAE Channels in the browser without leaking memory?
I can't seem to be able to reopen channels in my browser without a memory leak on production. The dev_appserver version of the channel doesn't leak.
channel.js appears to create an iframe which then ...
2
votes
0answers
34 views
After appengine enabled outgoing TCP socket in sdk 1.7,7,will it be possible to establish a JDBC Connection?
https://developers.google.com/appengine/docs/java/sockets/overview
Will it be possible to connection to amazon rds through mysql jdbc connector in gae now?
2
votes
0answers
60 views
Why does printing a module make the code function?
I was working with this code. Until I included print tweepy in the code the page on GAE returned as blank; no error, or anything. It worked fine from the command line. Why would this happen? Is there ...
2
votes
0answers
31 views
Values in dropdown menu created using ReferencePropertyField() are not proper
I am using Flask on App Engine. Here is the code:
models.py:
class Client(db.Model):
name = db.StringProperty(required=True)
def __repr__(self):
return unicode(self.name)
class ...
2
votes
0answers
51 views
blobstore.ParseUpload acts differently in dev server and deployment
I'm trying to send a multipart/form with both a file and an access token,
it works fine with the dev server, but the exact same post to AppEngine deployment result in a different received token string ...
2
votes
0answers
137 views
Unable to debug dev_appserver in Google App Engine
I don't think this issue is unique to PyDev, but to any python debugger.
Using Eclipse and pydev, I'm unable to break on my WSGI handler, in a dev_appserver (The Google app engine development server) ...
2
votes
0answers
64 views
GAE/J This application does not exist (app_id=u'app-id')
I'm having this problem that I can't deploy to GAE cloud. I am using the appcfg.sh script.
I have already did this:
./appcfg.sh update "/path/to/war" --no_cookies
And still getting the error. ...
2
votes
0answers
102 views
Creating new Datastore entities with optimistic locking (Google App Engine Java / JPA)
I have a JPA entity class User with a username @ID and no parent entity group. I need to make sure that when two parallel transactions try to persist a new User with the same username, only one is ...
2
votes
0answers
51 views
google-app-engine not running projects windows 7
Hello i have a problem with google app engine. i have installed python 2.7.4 from python.org and i also installed google app engine for python fro google's site. Then i create a new project, i load ...
2
votes
0answers
49 views
Unable to access Google Cloud SQL instance in dev_appserver with Django
I recently updated my GAE SDK and soon after the update, it has started acting up. I am using Google Cloud SQL in backend with Django 1.4.3. On my local dev server, it gives the following error :
...
2
votes
0answers
140 views
Why doesn't chrome cache google app engine blobstore
I'm using blobstore to serve audio files embedded in HTML5 audio element. Because I have a blobkey as a part of url I can assume that for any given url its content will never change. That looks like a ...
2
votes
0answers
98 views
Permission request screen on android with App Engine backend
I am using app engine as backend for an android app. I want users of my app to authenticate with their google accounts and on the backend, I use the users service to access the user details.This ...
2
votes
0answers
95 views
Out-of-the-box app-engine connected android project not working — app crashes
I have been following to the letter the simple tutorial on Creating an App Engine Connected Android Project using the eclipse plugin.
After setting up everything, running the project leads to two ...
2
votes
0answers
54 views
--enable_sendmail in GAE 1.7.6 has been changed
Not entirely sure if this is specific to me or not, however after recently updating to GAE 1.7.6 Dev server for Mac I've discovered that the flag:
--enable_sendmail
was causing the server to not ...
2
votes
0answers
103 views
Forward Email from Google App Engine
My application allows users to send messages. Recipients of messages can then respond to messages to an address message_id@application_id.appspotmail.com. The message is then sent to all other ...
2
votes
0answers
66 views
Beautiful Soup gives NULL
page=BeautifulSoup(page2)
self.response.out.write(page.title.string)
self.response.out.write("""<br />""")
mdays={}
mo={}
cost={}
ac={}
nc={}
month=(page.findAll('td',style="border-style: ...
2
votes
0answers
137 views
Google App Engine PDF converter
I'm looking for a good, open source, PDF generator/library that will convert html (with styling etc.) into a PDF file.
Requirement:
Must be Java or Python and run on Google App Engine.
Must be ...
2
votes
0answers
133 views
file upload encoding troubles with the file name. GWT
I have a problem when I try to upload file in my gwt project (server on gae). I have FormUpload (com.google.gwt.user.client.ui.FormPanel) end FileUpload (com.google.gwt.user.client.ui.FileUpload) ...
2
votes
0answers
103 views
Python2.7 is performing much worse then Python2.5 for my Appengine app
I'm seeing a huge difference in performance between py2.7 threaded and py2.5.. py2.5 is performing 2-4 times better (depending on specific server url call) creating lower latency and less cpu usage ...
2
votes
0answers
35 views
How to query Appengine Logs API for logs from ALL versions of app?
I'm trying to use the Logs API to query for logs in my application. However, I'd like to query for logs for ALL versions of my application. The log service has a query parameter called majorVersionIds ...
2
votes
0answers
110 views
Outgoing bandwidth 2x that of total responses
I have a very simple app engine application serving 1.8Kb - 3.6Kb gzipped files stored in blobstore. A map from numeric file ID to blobkey is stored in the datastore and cached in memcache. The ...
2
votes
0answers
96 views
Million User Fanout in Google App Engine using JPA
I'm trying to figure out the million fanout problem for GAE using JPA. If I understand things correctly I should have the following entities for something like Twitter (just an example):
public User ...
2
votes
0answers
164 views
Google App Engine : Lucene org.apache.lucene.store.LockObtainFailedException: Lock obtain timed out
In Google APP engine, I am using Lucene 4.1.
I am able to generate index file in local, but on the google server I am getting following exception (although the same code works fine in local machine):
...
2
votes
0answers
51 views
App Engine tasks that target backend get 503 even if backend is running
A lot of tasks are failing to execute because they get 503 from the target backend. This is very strange because most tasks execute but it seems that if it got 503 once it will always be getting 503.
...
2
votes
0answers
44 views
Find out whether Facebook Tab App was invoked by a bot or by a user
Facebook Canvas or Tab App is meant for Facebook users to invoke manually. I see a lot of calls to the app in quick bursts in a short period of time (about 20 to 40 in less than 2 or 3 seconds) ...
