how to upload python application with google apps???
Hey I developed one application and upload on example.appspot.com now i want to upload it on www.example.com what to do??? pls reply fast.. ...
Hey I developed one application and upload on example.appspot.com now i want to upload it on www.example.com what to do??? pls reply fast.. ...
My HTML code as following: <INPUT type="text" name="txt[]"> <INPUT type="checkbox" name="chk[]"/> I get the value in PHP by <?php $chkbox = $_POST['chk']; $txtbox = $_POST['txt']; foreach($txtbox as $a => $b) echo "$chkbox[$a] - $txtbox[$a] <br />"; ?> How do get the value in Google App Engine using Python? ...
Hi, here is what I'm trying to do: I set up a MapReduce job with the new Mapper API. This basically works fine. The problem is that the Task Queue retries all tasks that have failed. But actually I don't want him to do that. Is there a way to delete a task from the queue or tell it that the task was completed successfully? Perhaps pass...
This further to my previous question on handling large numbers of objects in BigTables/JDO. Assuming a TransactionAccount could end up with as many as 10,000 objects in its transactions list, how does this work with Goodle app engine? How do you add objects to such a large list without the whole list being loaded into memory? (The ass...
I want to use the remote_api to update the GAE bigtable (which can do save on many objects at once). However the model is created in Django and I don't have the bigtable model. Is there something like sqlall that produce the GAE model classes from Django non-rel? ...
I have one variable pool, shared by all clients, that stores all remaining enemies in a game. When a client starts a game, he gets some enemies from pool. When he finishes, enemies that he did not kill are put back into pool. The game also checks to see if all the enemies have been killed (i.e., pool is empty). What is the best way t...
public class MyServlet extends HttpServlet { public void doGet(HttpServletRequest request, HttpServletResponse response) throws IOException { UserService userService = UserServiceFactory.getUserService(); String thisURL = request.getRequestURI(); if (request.getUserPrincipal() != null) { response....
This is my app.yaml: - url: /about|/about/.* script: about.py This is my `about.py': application = webapp.WSGIApplication([(r'^/about$', AboutPage), (r'^/about/$', Redirect), (r'.*', ErrorPage)], debug = True) I wan...
Hi, We want to build a high performance web based Chat server using Flash on client side and Java on the server side on Google App Engine. We want to ignore other options like Silverlight, HTML5 for now. Client side: So on the client side we have Flash. We probably write some action script code to start using the web cam and posting i...
I'm using Google Engine App with Python. I want to add custom user authentication. How is it done, with the best practices? I want custom authentication because the app is built in Flex and I don't want to redirect to an HTML page. The user value object is like this: class User(db.Model): email = db.EmailProperty(required = True, i...
I'm trying to do my first client/server game using Google Apps Engine as my back end (specification requirement.) I've done the tutorials (Java), but that all seems highly browser-centric. Basically, I'd like my (mobile, not that it matters) app to: Allow the user to create a game-account (NOT their Google account!) Log-in with that ...
Simply put, when deploying my (Java) app to GAE, GAE throws an java.lang.NoClassDefFoundError for a class in one of the bundled jars. Everything worked fine in my test-environment. The exception is: java.lang.NoClassDefFoundError: org.jcp.xml.dsig.internal.dom.XMLDSigRI is a restricted class. Please see the Google App Engine develope...
I'm looking at the documentation for using cursors. Are these forward-only cursors - we can't page backwards?: http://code.google.com/appengine/docs/java/datastore/queriesandindexes.html#Query_Cursors Cursor cursor = Cursor.fromWebSafeString(cursorString); Map<String, Object> extensionMap = new HashMap<String, Object>(); extensionM...
I have installed Google application engine following instructions here: http://code.google.com/appengine/docs/java/gettingstarted/installing.html However, running dev_appserver.cmd script causes strange errors: /C/Program Files/appengine-java-sdk-1.3.5/bin/dev_appserver.cmd: line 1: @java: command not found /C/Program Files/appengine...
I am a newbie with a problem working with Django-nonrel on Google App Engine. I created a new app called "helloapp". 1) I have created a view in views.py called hello world: from django.http import HttpResponse def hello(request): return HttpResponse("Hello world") 2) I have then linked to it in the urls.py using: from...
I'm using App Engine python to host an application and would love to use Appstats and a couple of other libraries that run as middleware. However, when I set up middleware through appengine_config.py (as shown below) it works on the dev server but not in production. Appstats AND gaesessions work like a charm in the dev server and don't...
I tried to use this soln (which uses this file) to convert GAE db model to json. But when I tried to use it, I got this error "TypeError: datetime.date(2010, 7, 27) is not JSON serializable" Does anyone know whats the problem? Or, if you know alternative soln to convert GAE db model to JSON please suggest so. ...
I have a model which looks like this: class Search (db.Model) : word = db.StringProperty() an example "word" can look like word = "thisisaword" I want to search all entities in Search for substrings like "this" "isa" etc. How can i do this in App engine using python? Update: The words here will be domain names. So there is some...
I store groups of entities in the google app engine Data Store with the same ancestor/parent/entityGroup. This is so that the entities can be updated in one atomic datastore transaction. The problem is as follows: I start a db transaction I update entityX by setting entityX.flag = True I save entityX I query for entity where flag == T...
How can I implement full text search on app engine? I have read http://www.billkatz.com/2009/6/Simple-Full-Text-Search-for-App-Engine but this does not see to work anymore. ...