[google-appengine] Re: Error creating a google app engine application for a google app domain

2009-05-20 Thread Anjali Jain
Yes i still see the error. Do I need to do something extra if i am using a domain from outside and not via google. Pretty bad, I dont find any documentation on net for this. My domain name is : i-pathshala.8k.com taken from freeservers.com Used this for getting premium edition trial version Verifi

[google-appengine] How to define unique constraint for properties?

2009-05-20 Thread keakon
Anyone knows how to define unique constraint in datastore? See I have a Blog model, and it has these properties: name, content, title, keywords, description and so on. I need provide a URL to get this blog like this: http:///blog/.html So user cannot have two blogs that share the same name, oth

[google-appengine] Re: Python XForms and Google App Engine?

2009-05-20 Thread Neal
So far, this seems the way to get the xml into Python: data = self.request.body # the following is just to display the xml fixline = data.replace("<","<"); fixline = fixline.replace(">",">"); self.response.out.write( "Post3: Python found your submitted value = "

[google-appengine] Re: Matching date/time GQL query - 500 severe error

2009-05-20 Thread Neal
Actually, on further testing, my count is still not working, always seems to return 0. TaskLogs is a list of TaskLog objects, right? Neal --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. T

[google-appengine] Re: Matching date/time GQL query - 500 severe error

2009-05-20 Thread Neal
But why would testing for None throw a 500 severe error? Seems like it would catch the error and display something more helpful?? I am running with debug=True. Thanks for the clue on "count", here's how I got the count working: def get(self): query = TaskLog.gql("WHERE resultFlag > 0");

[google-appengine] Re: TypeError: has_key() takes exactly 1 argument (2 given)

2009-05-20 Thread Neal
Thank to all for explaining this mysterious message and showing me the correction. It now works great! Another post gave me the clue on how to get the count working. def get(self): query = TaskLog.gql("WHERE resultFlag > 0"); # get all rows LIMIT = 1000 TaskLogs = query.fetch(L

[google-appengine] Re: Apps engine and google data centers abroad

2009-05-20 Thread 风笑雪
For Chinese visitors, you have to point your apps domain to 74.125.113.121 instead of ghs.google.com.But I'm not sure when GFW will ban this ip. Once it happens again, you may find a new ip via: http://www.mob.net/~ted/tools/dns.php3?do

[google-appengine] Re: Download or View latest deployed source of your own Google App Engine app?

2009-05-20 Thread Tim Hoffman
You can't unless you included some mechanism yourself in your deployed app. There are plenty of threads about this in the groups. Have a look at http://groups.google.com/group/google-appengine/browse_thread/thread/d1dc78709634d2ef/4b538be870044955?lnk=gst&q=zipme#4b538be870044955 Unfortunately y

[google-appengine] Re: GoogleAppEngineLauncher - status icon yellow, should be green

2009-05-20 Thread Brenton
I've also noticed that the Deploy button doesn't actually deploy in this case (when the icon is yellow). The login sheet comes down, and it acts as if it's uploading; however, the logs do not change and the updates are not propagated to the cloud. --~--~-~--~~~---~--~-

[google-appengine] Re: URL not working with my app engine app

2009-05-20 Thread Jeff S (Google)
Hi dolsen, What is the URL you are accessing and what kind of error are you seeing? 404, 503? Thank you, Jeff On May 19, 10:19 am, dolsen wrote: > I have added an additional URL to my app engine app and it has been > working fine for over a week. However, now when I go to that URL it no > lon

[google-appengine] Re: Can't import zlib using App Launcher

2009-05-20 Thread Jeff S (Google)
Hi cerea, It sounds like there may be an issue with the zlib library installation on your machine. When you say that you cannot import zlib in the Interactive Console, you mean the interactive Python interpreter in the command line (just to make sure I understand), is that correct? Which version

[google-appengine] Re: Python XForms and Google App Engine?

2009-05-20 Thread Jeff S (Google)
Hi Neal, I'm by no means an XForms expert, but they can be configured to send the form data to your app in a similar format to traditional HTML forms. You could also have the XForm send the data as XML and use a standard XML library to parse the input. (I'm not sure how many web browsers support

[google-appengine] Inifite redirect loop on login

2009-05-20 Thread jannick
Hi When I try to log-in to the GAE dashboard/management app I end up in an infinite loop of redirects. I've seen this behavior since last weekend, and from multiple computers, locations and browsers. Anyone else experiencing this issue, or is it possible that my account has somehow been setup wro

[google-appengine] Apps engine and google data centers abroad

2009-05-20 Thread Lec
I would like to know if the apps engine applications developed on the USA based apps engine ie; usa data center are mirrored all over the world? Will the same app run in asia, europe, middle east, etc.? How do i localize access to that data center, does google route it automatically or do i need

[google-appengine] Re: cannot add new applications via Google Apps Standard

2009-05-20 Thread Lec
Great, many thanks Jeff seems to be working now. L On May 20, 2:16 pm, "Jeff S (Google)" wrote: > Hi Lec, > > This account should no longer need to verify using SMS. For anyone > else who stumbles across this thread, if you are unable to verify > using SMS, please fill out the form listed > he

[google-appengine] Re: Testing same-origin dependent apps in production.

2009-05-20 Thread David Wilson
For the archives, this simple mod_proxy setup appears to work perfectly: ServerName www-staging.domain.com ProxyPassMatch (.*) http://staging.latest.appid.appspot.com$1 ProxyPassReverse / http://staging.latest.appid.appspot.com/ David 2009/5/19 David Wilson : > Hi there, > > I'm

[google-appengine] Re: cannot add new applications via Google Apps Standard

2009-05-20 Thread Jeff S (Google)
Hi Lec, This account should no longer need to verify using SMS. For anyone else who stumbles across this thread, if you are unable to verify using SMS, please fill out the form listed here: http://code.google.com/appengine/kb/sms.html#error Thank you, Jeff On May 20, 8:58 am, Lec wrote: > I a

[google-appengine] Re: Problem creating new application

2009-05-20 Thread Jeff S (Google)
Hi Edgar, When using a Google Apps account as an admin, you will need to view the App Engine admin console through a domain specific URL. Try using http://appengine.google.com/a/maryfuoss.com Happy coding, Jeff On May 19, 11:18 pm, Edgar wrote: > Hi, > > I am having a problem creating a new

[google-appengine] Re: timeouts even after chunking datastore calls

2009-05-20 Thread Jeff S (Google)
Hi notcourage, The following lines attempt to iterate through all of the entities in a kind and deletes them one at a time. all = Thing.all() for x in all: ... Since you check the time to do a redirect, it looks like this should avoid the 30 second time limit. Do you know what kind of timeo

[google-appengine] Re: Error creating a google app engine application for a google app domain

2009-05-20 Thread Jeff S (Google)
Hi anjali, I was not able to reproduce this issue, are you still seeing the error when trying to create an app? Thank you, Jeff On May 20, 1:09 am, anjali wrote: > 1. Get a google app premium edition trial version using an exisitng > domain : > > I have an existing domain mydomain.com that I

[google-appengine] Re: google apps engine online error.

2009-05-20 Thread Jeff S (Google)
Hi Aaron, What library are you using for django (did you use django helper or app engine patch for example)? It would also be helpful to see some of your configuration settings. Thank you, Jeff On May 19, 9:30 pm, Aaron wrote: > ok, I am getting a server error 500. > > currently I got  django

[google-appengine] cannot add new applications via Google Apps Standard

2009-05-20 Thread Lec
I am trying to create new application via apps engine: http://appengine.google.com/a/moohog.com/ As suggested in other posts I login in with: lec ( a t ) moohog ( d o t ) com I press the button create new app, system asks me for mobile phone, once i enter it i am told: The phone number has been

[google-appengine] Download or View latest deployed source of your own Google App Engine app?

2009-05-20 Thread droidrunner
After a day of prototyping a utility Google App Engine webservice and deploying to appspot I had the unfortunate experience of a hard drive failure on my local machine, with no other local backup of my app. The source does exist on the production server, but I found no information on "downloading"

[google-appengine] Unable to upload app: Connection refused: connect

2009-05-20 Thread marwat...@yahoo.com
im trying to deploy my application from eclipse and getting this error Unable to upload app: Connection refused: connect See the deployment console for more details Unable to upload app: Connection refused: connect before that i was getting Revieved IOException parsing error so i have tried to

[google-appengine] Re: Error posting to URL: http://appengine.google.com/api/appversion/create?app_id: Invalid runtime specified.

2009-05-20 Thread arun
The specified URL says that only first 10,000 accounts will be activated. Has that limit been already exhausted? regards arun On May 19, 11:36 am, amitverma6523 wrote: > hello Jason, > > i had not yet received email indicating google app engine for java > activation... > will you please help me

[google-appengine] "java.io.IOException: Unknown" trying to fetch URL via SDC

2009-05-20 Thread Thor
Hi, I am trying to set up a proof-of-concept on using the Secure Data Connector to fetch data from behind a firewall. I have the SDC itself installed and configured correctly and it successfully connects to the Google App Engine. However, when I try to fetch a URL from my application using the f

[google-appengine] How can I get entities which have empty listproperty by gql?

2009-05-20 Thread mind4u
Static listproperty is not stored in datastore if it does'nt have any value. So, I don't know how to get entities which have empty listproperty . How can I get t1 by gql from follow example? --- class TestList(db

[google-appengine] Problem creating new application

2009-05-20 Thread Edgar
Hi, I am having a problem creating a new application. I have my own domain maryfuoss.com through google apps, but I have also set up a google account using my email ed...@maryfuoss.com. I logged into google app engine using my google account and created a new app "maryfuoss". It seemed to be crea

[google-appengine] Can't import zlib using App Launcher

2009-05-20 Thread cerea
Hi, I'm new to google app engine and python and I've run into a problem I can't seem to find any information about. First of all, I'm using Google App Launcher under OS X. Every time I try to run code that attempts to import zlib, "import zlib", I get the error: "ImportError: No module named zlib

[google-appengine] Chat Time transcript: May 20th, 2009

2009-05-20 Thread Jeff S (Google)
16:02 < scudder_google> Hi all, I'd like to start another installment of App Engine chat time, where Google engineers are on hand to answer your questions and listen to concerns 16:03 < nickjohnson> *tumbleweed* 16:03 < knoonan> Hi guys, for Ruby on App Engine, I think it would be very useful to h

[google-appengine] timeouts even after chunking datastore calls

2009-05-20 Thread notcourage
def clearDatastore(request): ti = time.clock() all = Thing.all() for x in all: x.delete() if time.clock() - ti >= 8: return HttpResponseRedirect("/clearDatastore") Any ideas on why the above times out? Thx. --~--~-~--~~~---~--~--

[google-appengine] using django with google app engine.

2009-05-20 Thread Aaron
Hi, i uploaded a app that uses django. here is where it is dev.mobileconsultinginc.com/admin this admin area is django. I already asked on djangos group and also the IRC rooms. I was told that django admin won't work properly because that it uses djangos models not datastore database models.

[google-appengine] Re: "Too Many Versions (403)" Error on Deploy

2009-05-20 Thread Joe
Thank you Nick! We're back to deploying happily. We had 11 major versions because we never saw/used the now obvious delete button on the Versions management page. Now our versions are down to a tidy 2. For future searchers who see this post, here are three tidbits that I had not known about: "App

[google-appengine] Re: BigTable Administrator/Dev Tools?

2009-05-20 Thread Nick Johnson (Google)
Hi Giovanni, On the development server, assuming you're using the Python SDK, you can go to http://localhost:8080/_ah/admin/ , which incorporates a datastore viewer. In production, the equivalent can be found in the App Engine control panel at http://appengine.google.com/ . If you want to extrac

[google-appengine] BigTable Administrator/Dev Tools?

2009-05-20 Thread Giovanni
I'm intrigued by BigTable as an alternative to traditional RDBMS systems. However, where are the administrative tools? How can I look at my database and see which tables/objects exist and what data is in them? Is there a workbench like interface where I can develop a single query before coding it

[google-appengine] Re: Java Runtime Acceptance

2009-05-20 Thread Felipe
Got it. Thanks! On May 20, 2009, at 10:00 AM, "Nick Johnson (Google)" wrote: > > Hi, > > Both of you should now have invites in your inbox. > > -Nick Johnson > > On Tue, May 19, 2009 at 9:50 PM, Felipe wrote: >> >> If it's not too much trouble I'm also waiting to have access to the >> Java Ap

[google-appengine] Re: Python XForms and Google App Engine?

2009-05-20 Thread Neal
Or maybe my question is off-base. Maybe XForms just does a regular post to a server just like an HTML form? Ideas? Neal --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this gro

[google-appengine] Re: Java Runtime Acceptance

2009-05-20 Thread Nick Johnson (Google)
Hi, Both of you should now have invites in your inbox. -Nick Johnson On Tue, May 19, 2009 at 9:50 PM, Felipe wrote: > > If it's not too much trouble I'm also waiting to have access to the > Java AppEnginw to be able to upload my J2EE app. > > On May 19, 2009, at 10:51 AM, "Nick Johnson (Googl

[google-appengine] Re: Activating GAE (Java) account issues

2009-05-20 Thread Nick Johnson (Google)
Hi Mark, You should get an invite shortly. -Nick Johnson On Tue, May 19, 2009 at 9:28 PM, Mark wrote: > > I've been waiting several days now, and would also like to know how > long it usually takes for the email to go out. Or if the limit on > early access accounts has been reached, it would

[google-appengine] Re: "Too Many Versions (403)" Error on Deploy

2009-05-20 Thread Nick Johnson (Google)
How many major versions do you have active on App Engine? It's not really intended that you have 10+ active versions of an app - once you're done with an old version, you should delete it. Also note - if it's helpful - that major version names are strings, not integers, so you can name your versi

[google-appengine] Re: TypeError: has_key() takes exactly 1 argument (2 given)

2009-05-20 Thread Tim Hoffman
Hi Neal I do use templates but zpt based ones, I am not using any bits of django there are quite a few other python lightweight frameworks running on gae now. For alternatives have a look at things like pylons or repoze, however you will possibly be a bot more on your own as django is a bit of

[google-appengine] Re: Could Mailman run on AppEngine?

2009-05-20 Thread Nick Johnson (Google)
As Wooble points out, receiving email is not currently possible with App Engine, though third-party services like smtp2web.com exist to facilitate this. More to the point, App Engine puts restrictions on what email you can send using it - the 'from' field must always be the logged in user or one o

[google-appengine] Re: Could Mailman run on AppEngine?

2009-05-20 Thread Wooble
On May 19, 5:13 pm, Nevin Freeman wrote: > Has anyone tried to port Mailman (http://www.gnu.org/software/mailman/ > index.html) to run on AppEngine? I'm assuming there would be some > major barriers, but I think they might be beyond what I have time for. > All comments on the topic welcome! An

[google-appengine] Re: Matching date/time GQL query - 500 severe error

2009-05-20 Thread Wooble
taskLogs is a db.GqlQuery. The only way it will be None is if the db.GqlQuery() constructor fails horribly. to count rows returned, use count(). On May 19, 4:05 pm, Neal wrote: > I switched the GQL Query to the following. > Now the GQL Query no longer gives 500 severe error, but almost > anyth

[google-appengine] Re: TypeError: has_key() takes exactly 1 argument (2 given)

2009-05-20 Thread Nick Johnson (Google)
Hi Neal, djidjadji's response correctly demonstrates what the problem is: The second argument to template.render should be a dictionary, not an individual object. The error you're seeing is because Django is trying to treat your TaskLog object as a dictionary. Change: self.renderPage('templa

[google-appengine] Re: How to use Images.composite ?

2009-05-20 Thread Nick Johnson (Google)
Hi, Please see my reply to your crosspost in the google-appengine-python group. -Nick Johnson On Wed, May 20, 2009 at 8:18 AM, cast42 wrote: > > Hi, > i'm trying to overlay some icons on a weathermap. I intend to use > image.composite for that. > Just to try out, I load the weathermap backgrou

[google-appengine] Re: Can I choose where in the world my app is hosted?

2009-05-20 Thread Kenneth
You should add a star to this issue: http://code.google.com/p/googleappengine/issues/detail?id=193 I'm pretty sure the data is hosted in California. I'm in Ireland and I'm getting <40ms latency to appspot.l.google.com. I haven't really pushed bandwidth but latency is generally the key factor an

[google-appengine] Error creating a google app engine application for a google app domain

2009-05-20 Thread anjali
1. Get a google app premium edition trial version using an exisitng domain : I have an existing domain mydomain.com that I have taken from freeservers.com. I have used this domain to get a premium edition trail version of google apps. Got my google apps domain created. I have verified ownership

[google-appengine] 1.2.2 Update causing new URLFetch 'Stripped prohibited headers' Warnings

2009-05-20 Thread James
I just noticed that dewitt clinton's python-twitter (http:// code.google.com/p/python-twitter/) stopped working with the new update. It logs a warning that "Stripped prohibited headers from URLFetch request: ['Host']" , and then hangs until the request times out. As far as I can tell, python-twit

[google-appengine] Re: the GAE's error with JDO at Persistence.

2009-05-20 Thread swined
i have similar problem and it looks like this happens because of failed enhancement. actually the log which was mentioned in the message does not exist (or i can't find it) and i still do not know how to make it work. enhance: DataNucleus Enhancer (version 1.1.0) : Enhancement of classes DataNucl

[google-appengine] How to use Images.composite ?

2009-05-20 Thread cast42
Hi, i'm trying to overlay some icons on a weathermap. I intend to use image.composite for that. Just to try out, I load the weathermap background and see if I can at it in the composite: back = images.Image(urlfetch.Fetch('http://www.deredactie.be/html/ images/v3/bg_weer_belgie_dag.jpg').content)

[google-appengine] Pyxer, easy framework build on conventions

2009-05-20 Thread Dirk Holtwick
Hi, I would like to share with you my small framework I build for the Google App Engine and think you might like it. You find it here coming along with a short screen cast explaining basic usage: http://code.google.com/p/pyxer/ (Project) http://pypi.python.org/pypi/pyxer (Download) To get start