google-app-engine

Any workarounds for Google App Engine's 1 minute cron limitation?

In its current format, Google App Engine's Cron allows that "The shortest time between runs of a task that can be specified is 1 minute." I have an application that where I would prefer it run a task every 10 seconds. Are there any workarounds? ...

with out host name details(for sending E-mail) how to upload in to appspot

Hi All, With the help of Google App Engine Api, I have developed send Email in my application http://code.google.com/appengine/docs/python/mail/sendingmail.html It was executing fine with no errors, status code is 200 its showing, But I am not able to seen the E-mail (which I mentioned in code) But in my Development server...

Are server restarts necessary while developing an App Engine/Java project in Eclipse?

I'm developing a Ruby web application on top of GAE-Java and development is painfully slow because in Eclipse I must restart the development server every time I make a change to my Ruby code. I'm not able to work effectively this way because each restart takes about a minute. Is the norm for Java development or am I doing something wron...

access is denied in GAE in eclipse

When I am trying to to do Model.put() in eclipse for a google python app after changing the parameter of --datastore_path="F:/tmp/myapp_datastore" in arguments of debug configurations.I dont know if its related to above change or is there any other magic behind the scene. Any help. exception value:[Error 5] Access is denied UPDATE, A...

connection reset for concurrent usage by two users GAE

I am trying to access same python web app in GAE from firefox and IE with different user login and when I start the IE session I get the following error with IE going standstill. why? error: (10054, 'Connection reset by peer') ...

How do i get foo.somedomain.com get handled by myapp.appspot.com/foo on appengine

Hi, Here is what I'd like to achieve http://foo.somedomain.com gets handled by http://myapp.appspot.com/foo (google appengine app myapp) and the underlying url is masked. Note the following: somedomain.com is a third party domain that would like to add foo.somedomain.com mydomain.com would be CNAME'd to myapp.appspot.com mydomain...

Thinking in AppEngine

I'm looking for resources to help migrate my design skills from traditional RDBMS data store over to AppEngine DataStore (ie: 'Soft Schema' style). I've seen several presentations and all touch on the the overarching themes and some specific techniques. I'm wondering if there's a place we could pool knowledge from experience ("from the...

static stylesheets gets reloaded with each post request

Every time there is a post from page the entire bunch of css gets reloaded. Is it possible to tell them not to come in again and again. There is a series of GET that get fired. Can we optimize in some way or is it normal behavior? The environment is google apps in python. ...

In the Google App Engine Django Helper, is the app.yaml or the url.py file used to find the correct view?

I'm pretty new to this and while I'm pretty sure this is an easy question, I haven't been able to figure it out myself. Thanks in advanced guys! ...

Countdown timer using jquery or google app engine ?

hi everybody, I need to do a countdown clock, that counts down the days, hours, minutes and seconds that are left to a date of my choice,Using jquery or google app engine(Python). I created a timer using Javascript,But in that i used system time. I need to use server time.Can any body give me ideas to build up a count down Timer using...

Facebook, Django, and Google App Engine

I'm experimenting with app-engine-patch (Django for GAE) on Google App Engine. And I would like to write a Facebook application. Is it possible to use PyFacebook and its middleware? Or is there some other solution? ...

HTTP Post of XML string and save it as .xml on server (django/GAE)

Trying to send a XML string (client) to my web app which is running on GAE using django. Idea is to basically have a post handler which will extract the XML content and save it in plain .xml file and return the filename in response to client If anybody has any idea or have tried similiar thing, would help me go fast. Thanks in advance...

Page isn't always rendered

Hello all, In Google App Engine, I have the following code which shows a simple HTML page. import os from google.appengine.ext.webapp import template from google.appengine.ext import webapp class IndexHandler(webapp.RequestHandler): def get(self): template_values = { } path = os.path.join(os.path.dirname(__file__), '../tem...

Question on Google Provisioning API and SSO Password change propagation

Hey all, I'm using the Google Apps Provisioning API to synchronize user data with our internal database (MySQL). For every new user created through our site's backend, a corresponding user in created in the GoogApp system. Change is passwords are also synchronized accordingly. I'm about to implement SSO, so that logins performed on ...

disable a block in django

I want to disable a block in development and use it in deployment in google apps in python development. What changes do i need to make in template or main script? ...

One stop resource for : Will it play in App Engine/Python?

Information on frameworks, languages, and libraries for GAE/J is maintained at : http://groups.google.com/group/google-appengine-java/web/will-it-play-in-app-engine Is there a similar page for GAE/Py? ...

GWT with JDO problem

I just start playing with GWT I'm having a really hard time to make GWT + JAVA + JDO + Google AppEngine working with DataStore. I was trying to follow different tutorial but had no luck. For example I wend to these tutorials: TUT1 TUT2 I was not able to figure out how and what i need to do in order to make this work. Please look at my s...

Code reuse between django and appengine Model classes

I created a custom django.auth User class which works with Google Appengine, but it involves a fair amount of copied code (practically every method). It isn't possible to create a subclass because appengine and django have different database models with their own metaclass magic. So my question is this: is there an elegant way to copy...

Can i deny access to a jvm class by configuring java.policy file ?

I wanted to create add to my jdk6\jre\lib\security\java.policy file an interdiction to create some classes that are blacklisted by appengine. For example I want my local jvm to throw an exception when the application tries to instantiate javax.naming.NamingException. It is possible? I will try to explain my specific problem here. Googl...

Google App Engine HTTP header Content-Type not correct once application is deployed

I am writing an app on GAE and I have a URL that will always return XML and set the Content-Type to "text/xml; charset=utf-8". I am using the built in webapp framework and using the following code to set content type and return XML in the web handler: self.response.headers.add_header('Content-Type',"text/xml; charset=utf-8") self.res...