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).
1
vote
0answers
42 views
JDO - java.lang.NoClassDefFoundError in Google Web Application
Im trying to make a Google Web Application in Java. I got a servlet named Get.java, a EMF.java that is taking care of the storage and a javabean, Person.java.
Get.java:
package no.nordnes;
import ...
0
votes
1answer
21 views
NPE when using JSoup and appengine 1.7
I'm trying to use Jsoup (1.7.2) with appengine (1.7.7) and I'm getting an error when trying to connect:
try {
doc = Jsoup.connect("http://www.google.com").get();
} catch (Exception e) {
...
0
votes
1answer
51 views
How to delete an entity including all children
I would like to do a cascading delete on an entity in the datastore. By this I mean all children and indirect children will also be deleted. I initially assumed this would be default behavior but ...
0
votes
0answers
40 views
Unable to see saved entities using cloud end point rest API
I have a gae project that uses cloud end points in Java which is a very simple CRUD application.
I have some PUT requests that change the datastore entities and GET requests that retrieve them. I ...
0
votes
0answers
22 views
Want all urls to be secure except 1
So i have this
<security-constraint>
<web-resource-collection>
<web-resource-name>Protected Area</web-resource-name>
<url-pattern>/*</url-pattern>
...
1
vote
1answer
34 views
Google AppEngine in Intellij
How do I set up the Google App Engine in IntelliJ? I think I'm missing something here.
I see that they have app engine instructions on IntelliJ's site, but I don't see how to install it into ...
1
vote
1answer
46 views
How do I find logs specific to a single MapReduce job on Google App Engine?
The application I'm working on has a lot of mapreduce cron jobs running, and from time to time some of them produce errors (mosty ApplicationErrors, TransientErrors, DatabaseErrors, TimeOuts, etc), ...
0
votes
1answer
16 views
how to set a jvm flag in Eclipse
I develop a gae app using tasks queue.
I m in development mode and i want to disable automatic execution of tasks.So i need to set the following flag:
...
0
votes
0answers
20 views
Upgrade google-api-java-client 10.3 to 15.0rc
I'm using Google Api Java Client for login with Service Account (https://code.google.com/p/google-api-java-client/wiki/OAuth2#Service_Accounts) to my application, but when I want to upgrade to 15.0rc ...
0
votes
1answer
25 views
GAE post does not show directly after put
I have a very simple "guestbook" script on GAE/Python. It often happens however, that entries which I put() into the datastore are not showing right away - I almost always need to refresh.
def ...
0
votes
0answers
33 views
Strange memcache behaviour on GAE
I'm doing a simple CRUD system with memcache to make reads of tables faster, but I'm a bit confused with the behaviour.
Basically, this is the important code:
class Book(db.Model):
title = ...
0
votes
1answer
25 views
Restlet thread safety and Google App Engine
I am using Restlet 2.1.2 on Google App Engine and I am thinking about its thread safety. <threadsafe> is set to true in my GAE's configuration.
In general, there are concurrency notes in the ...
1
vote
1answer
31 views
Webapp2 strict_slash returns KeyError: 'Missing Argument' for url with trailing slash when method has 2 or more args… Bug?
I've built my urls as such:
#url = /index/test/argument/second
# Maps to the Index handler's test method and passes in the optional arguments 'argument' and 'second'
# So the handler function looks ...
0
votes
1answer
36 views
Routing in webapp2
I am playing around with Google Course Builder.
It's built using Google App Engine and the webapp2 framework.
I am not very familiar with webapp2 and routing in general and I think that's the reason ...
0
votes
0answers
18 views
Changing permissions to Google Drive with task queues and Oauth 2.0
We implement a functionality based in Task queues in Google App Engine Java (10 queues) adding and deleting permissions from Google Drive, but I have an strange problem, issue. After doing some ...
0
votes
0answers
18 views
GAE receiving Mail: can not get current user
Following the GAE tutorial I managed to get it running and my servlet can receve incoming mails at local dev server.
As far as I understand when an inbound mail is sent to my application, an admin ...
0
votes
1answer
15 views
Missing Google App Engine receipts in Google wallet
Since the end of April I seem to be missing receipts for my Google App Engine projects in Google Wallet.
These seem to be the smaller values, anyone have any ideas why that should be?
0
votes
0answers
27 views
Google App Engine Channel API Same Origin Policy
I want to write a little chat application using Google App Engine (GAE) and the Channel API. Therefore, the Java Script Clients should be embedded in some web sites. The Java backend is hosted on GAE. ...
0
votes
1answer
34 views
How to delete an entity from the search index in gae?
I want to delete an entity from an index but it is not found:
query = 'articleID = '+str(article.key().id())
logging.info('query: ' + str(query))
query_options = ...
1
vote
1answer
30 views
GAE Python Testing
First I'm quite new to GAE/Python, please bear with me. Here's the situation
Have a test_all.py which tests all the test suites in my package. The TestCase's setUp current look like;
import ...
1
vote
1answer
43 views
Multi-part Form with File Input JQuery Mobile
I'm trying to create a JQuery Mobile page that uploads a video to the Google App Engine Blobstore along with associated title, description, etc.
Here's the HTML of the form.
<form ...
0
votes
0answers
20 views
gae python cannot delete tasks from the default queue
Queue seemed to jam up. Very large number of retries of with:
47:32.546 /_ah/mapreduce/controller_callback 200 325ms 0kb AppEngine-Google; (+xxx://code.google.com/appengine)
0.1.0.2 - - ...
0
votes
0answers
45 views
Referencing a model class inside of a property in Google App Engine
How do you reference a model class inside of a property validator?
My source code below. This is one of the properties from my model class User. The problem is in line 4, where keyword self is given. ...
0
votes
0answers
25 views
Has anyone seen GAE fail to respect the deadline attribute of an RPC?
I occasionally get timeouts when trying to do transforms or resizes on large images using Image.execute_transforms_async ...
0
votes
1answer
50 views
Can't get application made with google app engine to run
I have been following this tutorial
to create a to-do list app using Google App Engine. When I go to deploy it I get this error
java.lang.ExceptionInInitializerError:
From looking at the output in ...
0
votes
1answer
27 views
How to create a local_db.bin from a live app engine application
Is there a way to export a google app engine's datastore and use it to create a local_db.bin file for use with eclipse?
1
vote
0answers
29 views
Google App Engine: create deployable package of Java application
I would like to make my App Engine application easy to install for anyone, even for non-developers. I can distribute my app with SDK included and I can wrap the install process by an easy-to-use ...
0
votes
0answers
18 views
Google App Engine dev_appserver.py behind socks proxy
I am using pythonforfacebook facebook sdk for development in Google App Engine. This sdk uses urllib, urllib2 and httplib to connect with facebook. However I am developing behind socks proxy. How do I ...
4
votes
1answer
74 views
What is the best way to serve static javascript from App engine that can't be cached? (ie a bookmarklet)
Our app has a small javascript file that bootstraps a bookmarklet that I need to serve from a java version of app engine. By it's nature, it appends a random string of numbers after a ? (ie ...
1
vote
1answer
31 views
Integrate Google Wallet with Google Apps Script?
I have been developing an event registration form with Google Apps script. The form is required to add the data entries to a Google spreadsheet and process orders with Google Wallet. I have tried ...
1
vote
0answers
21 views
custom-domain https requests aborted on appengine app
I have recently enabled https on custom domain for my appengine app. Everything worked just fine for a couple of days. After a while, on some machines requests started getting aborted.
I observed ...
0
votes
0answers
30 views
Open source cloud storage(CS) for Google App Engine
Are there any open source cloud storage build with GAE/J?
I've found lots of open source cloud storage:
Ceph S3 http://ceph.com/docs/master/radosgw/s3/
Riak CS ...
0
votes
0answers
30 views
Google app engine Calendar API
I do the instalation in the site enter link description here, and works well but when I put a code from the example pf calendarsList it fails.
The code in the main.py is:
#!/usr/bin/env python
#
# ...
1
vote
1answer
29 views
How to keep track of Form field changes in Flask-WTF?
I have model with members field as shown below:
class Team(db.Model):
--- some fields ---
members = ListProperty(db.Key) # Using App Engine datastore as backend.
I am using Flask-WTFforms ...
0
votes
1answer
26 views
Are generated id's unique per entity or for my app's complete datastore?
I'm using
@GeneratedValue(strategy = GenerationType.IDENTITY)
in my JPA Entities to let Google AppEngine generate id's for my entities.
Now I wonder if the generated a unique per entity or for my ...
1
vote
1answer
31 views
How do i get the HTTP headers in a Google App Engine webapp2 requesthandler
How do i access the http headers of the request that calls this method?
class GetDBVersion(webapp2.RequestHandler):
def get(self):
# writes out db version
in main.py
app = ...
0
votes
1answer
17 views
How do I filter the Logs by HTTP status code in the GAE Admin Dashboard
In the Google AppEngine Dashboard, there's a page where I can view all my application logs.
I want to filter logs by their HTTP status code, like 200, 404, or 503, for example.
How do I do this? Is ...
0
votes
1answer
32 views
Please help me troubleshoot this search API issue
I want this output:
test
but instead I get this output
[search.TextField(name=u'comment', value=u'test')]
Can you tell me what is wrong?
The code is basically
{{scored_document.comment}}
That ...
1
vote
1answer
36 views
Pickling on GAE ndb
I am trying to pickle and unpickle structured data into an ndb.PickleProperty() property like so:
month = MonthRecord.get_or_insert(month_yr_str, parent=ndb.Key('Type','Grocery'), ...
0
votes
1answer
75 views
Facebook Chat API - Python App Engine
I'm trying to use the Facebook chat API in my web service(AppEngine Python). I found some code on line, but any of them help me to make it work.
This is the code I'm using, but don't work. What I am ...
0
votes
0answers
41 views
Primefaces <p:tree /> event listeners not being called on the server - but work locally
I have an odd issue with my Primefaces p:tree data structure. When deployed to the server (GAE) the event listeners (onSelect(), onUnselect(), etc...)are not being called, although they work fine ...
0
votes
1answer
21 views
creating a compound or composite key on google app engine
I have two models:
Car(ndb.Model) and Branch(ndb.Model) each with a key method.
@classmethod
def car_key(cls, company_name, car_registration_id):
if not (company_name.isalnum() and ...
0
votes
1answer
21 views
How do I add anti-clickjacking support to an app I'm building in webapp2 for google app engine?
I know there's WSGI middleware for django, but I can't find anything for webapp2. Would the django middleware work?
0
votes
1answer
38 views
Error:The import com.google.appengine.api.datastore cannot be resolved JPA GAE GWT
Error in Development Mode
[ERROR] [cbd] - Line 15: The import com.google.appengine.api.datastore cannot be resolved
User.java
@Entity
public class User implements Serializable {
...
3
votes
1answer
42 views
Static files application_readable usage
I've been trying to understand how the application_readable static url handler field works. I'm using SDK version 1.7.7 and I've set this to true on an application in my dev environment, but I can't ...
-2
votes
0answers
10 views
Socialauth Example using GWT GAE [closed]
I have a web application and I am using GWT/GAE
I want to integrate with Socialauth. Are there any reference implementations using above technologies ?
Using social login/authentication
The sample ...
0
votes
1answer
39 views
Google App Engine Connected Android (Eclipse) device endpoint error
I am just started exploring app engine with android (Java) and I followed a link to teach me how to create an App Engine Connected Android Project. ...
0
votes
0answers
28 views
AppEngine Security Constraint URL pattern - secure all except
Currently I have
<security-constraint>
<web-resource-collection>
<web-resource-name>Protected Area</web-resource-name>
...
0
votes
0answers
43 views
Google authentication and gmail access in java
I am working on a JSF application.
In which a user should be able to login with gmail/google apps account (redirected to google login page and returned after authentication)
and user should be able ...
0
votes
1answer
52 views
Simple static website in GAE with custom 404 error page
I am using GAE for a simple static website with just html/htm pages, pictures etc. I am also using Python 2.7.
So i use a straight forward app.yaml and main.py and that works. However, when ...



