So, I'm trying to host a website on the google cloud app engine, but css and other static files are not showing up. Here is the relevant directory structure: myapp -app.yaml -manage.py subapp -apps.py -models.py -urls.py -views.py static -style.css A
I'm trying to implement a Push Notification system in PHP which needs to send massive notifications with the shortest delay possible, as described here: The drawback I see in this architecture is how to auto scale the Notification Workers. As far as
While I am accessing data using Gson from GAE getting exception: Exception:java.lang.SecurityException: java.lang.IllegalAccessException: Reflection is not allowed on private static final int java.util.BitSet.ADDRESS_BITS_PER_WORD My code is: Gson gs
i want to send the accelerometer values recorded for 5 seconds to server.i tried to concatenate the values and send through http post request but it is not working. since almost 350 values are recorded the data is large and is not possible send throu
Below is the sql connection code for my php script as it attempts to connect to my Google SQL Cloud Database <?php $con=mysqli_connect(":/cloudsql/projectID:google-cloud-instance","root","root","DATABASE"); // Ch
How can I use Cloud SQL to create a database? When I use MySQL, I could easily run a sql script to create them on phpMyAdmin. I found a site that advertises that it's possible to run SQL files right on Google Cloud SQL. This is exactly what I want to
I am new to python and am trying to define a function and then use it in Google App Engine - but I keep getting the error "Error: global name 'cache_email_received_list' is not defined" when I try to execute the function. Any help would be great
What I'm trying to do is create an Android app that talks to my existing App Engine back end. I'm following the steps in http://android-developers.blogspot.com/2013/06/adding-backend-to-your-app-in-android.html. I installed Android Studio 0.2.1 (I/O
I'm looking to do k-means clustering on an Google App Engine app (built for Google Glass). The App Engine only accepts pure Python libraries. I have tried using SciPy's kmeans and kmeans2 edited to use py_vq instead of the C implementation of vq, but
I want to have some JUnit test (created with GWT) to contact a servlet (with GAE calls inside). When I run the test I get the following stacktrace: java.lang.NullPointerException at com.google.appengine.api.NamespaceManager.get(NamespaceManager.java:
I am trying to use PyDev on Eclipse Juno to create a GoogleAppEngine project. I am very new to Python and AppEngine. So PyDev asks me for Google App Engine Directory which apparently is where the appcfg.py file is. I have already installed the GAE an
I'm using GAE Python 2.7 with the local development server. I have configured a backend backends: - name: worker class: B1 options: dynamic and I'm using the default taskqueue. Everything works fine and the backend and taskqueue are visible at the SD
Our application processes several dozens of requests per second and small portion of them takes significantly more time to process than others. We are interested to 'profile' those slow requests, however appstats seems to keep just small window of pr
To create a web application on Google's AppEngine I was looking for a framework. During my research I came across Groovy and Grails. I'm a Java kind of guy so I prefer something Java-like above Python frameworks (like Django). So I scraped together s
I'm trying to create a RESTful web service client on Google App Engine (Java) that consumes Json. I've tried Sitebricks and Jersey, but neither of them seem to work. Is there any framework out there that can be used to create RESTful web service clie
I have built a music store program similar to iTunes in Java and and want to deploy it to the web. But when I go to Heroku App and see the demo application, its completely different. They say we need to upload a web application. Same thing in Google
I am working on a test project using Python on Django Project and will run on GAE. I stumble into a problem when one of the requirement states that the application should have a facility/mechanism of saving data from transactions even when there is n
I copied some namespace data from x1 to x2 using remote api and lowlevel datastore api. I am accessing the x2 app, to get the following error for some data java.lang.IllegalArgumentException: app x1 cannot access app x2's data at com.google.appengine
I must submit two forms at once and I don't want javascript. So I think I can post the form to myself, do my work and then post it on to the third-party payment provider. This is to make the order appear in our datastore. The manual says how to submi
I am trying to display titles of the posts (along with date and link to the post) from my wordpress blog on my webpage which is hosted on google app engine. Can I import python's xmlrpc module and use getRecentPosts function to get the list of the po
HI all, I a newbie in google app engine, i'm using python. Currently, i try to working with task queue. But i dont see any complete sample on this metter. So please give me some sample of task queue in google app engine, written in python. ThanksPyth
I have the below function running fine on python 2.6, but appengine's production environment is 2.5 and it blows up on: AttributeError: 'module' object has no attribute 'Mapping' Does anyone have a solution for 2.5? Thanks Chris import types, collect
I am trying to query a collection of entities by its key in the Google App Engine datastore. This is the query I am trying to execute with no success: Query query = pm.newQuery(Fix.class); query.setFilter("__key__ IN param"); query.declareParame
i am writing an app to compare products, using Python and GAE. The products will belong to a set of similar products, and the app calculates the best value in each set. When i create a new product, it can be added to an existing set or a new set can
When I navigate to my App Engine app (http://www.riabiz.com/) a period is sometimes (not always) appended after com, so if I enter http://www.riabiz.com/a/4153106 I get quickly redirected to http://www.riabiz.com./a/4153106/. This appears to be causi
(I tried asking this on the GAE forums but didn't get an answer so am trying it here.) Currently to upload blobs, the app engine's blob store service creates a unique one- time URL that a user can post blobs to. My requirement is that I only want aut
Here's my problem: class City(Model): name = StringProperty() class Author(Model): name = StringProperty() city = ReferenceProperty(City) class Post(Model): author = ReferenceProperty(Author) content = StringProperty() The code isn't important... its
While testing my Google App Engine application, I search for links which include app engine keys. For example: /story/ag5yZXBsaWUtdGVzdGluZ3IMCxIFU3RvcnkY-w0M/ What characters are allowed in these keys? I had been using the regex [a-zA-Z0-9], but it
Reading: http://code.google.com/appengine/docs/python/datastore/gqlreference.html I want to use: := IN but am unsure how to make it work. Let's assume the following class User(db.Model): name = db.StringProperty() class UniqueListOfSavedItems(db.Mode
When I add the following line to Google's helloworld example: from reportlab.pdfgen import canvas I get the following error: <type 'exceptions.ImportError'>: No module named reportlab.pdfgen I can get at the reportlab.pdfgen library from the python