[google-appengine] Re: Images API still limited to 1MB

2009-04-20 Thread Tim Hoffman
Hi I suppose you need to remember app engine is a horizontally scalable application framework and not a cpu intensive cluster. Whilst google's infrastructure might seem massive I imigine it is not infinately scalable. So limiting image sizes - thus limiting the potential intensive ness of

[google-appengine] Re: entity stuck at the wrong end of the index

2009-04-20 Thread bd_
On Apr 16, 12:08 pm, ryan ryanb+appeng...@google.com wrote: the discussion here is pretty on target. thanks, all! beyond the points already raised, i'd guess this is caused either by writes (puts or deletes) that returned errors, and therefore didn't update all indices, or an index

[google-appengine] Re: Retrieving Large Query Sets Containing Inequality Operators

2009-04-20 Thread djidjadji
Hi Chris, You can do this by adding an extra attribute to the object that contains the date and a sequence number. The extra attribute is an IntegerProperty. It has arbitrary precision, unlimited bit length. If you store (long(datetime.toordinal(myRecord.date))128)+long(sequenceNum) you can

[google-appengine] Concurrency Threading...

2009-04-20 Thread eli
Hi guys, I have built a program that is (hopefully) concurrency safe. I would like to test this thoroughly using a testing module that I have written. Unfortunately I cant seem to get app engine to run two threads concurrently to simulate two users taking action at the same time. Currently I am

[google-appengine] Re: Retrieving Large Query Sets Containing Inequality Operators

2009-04-20 Thread Chris Spencer
Thanks, that's a good thought. I agree that it should be done in a transaction. However, I don't believe App Engine allows you to run queries in a transaction. Chris 2009/4/20 djidjadji djidja...@gmail.com: Hi Chris, You can do this by adding an extra attribute to the object that contains

[google-appengine] Re: Concurrency Threading...

2009-04-20 Thread Sylvain
http://code.google.com/intl/fr/appengine/docs/python/runtime.html#The_Sandbox An App Engine application cannot: -spawn a sub-process or thread. A web request to an application must be handled in a single process within a few seconds. Processes that take a very long time to respond are terminated

[google-appengine] Re: Google Geocoding not working

2009-04-20 Thread bFlood
hello marzia has the Maps team addressed this issue yet? I received a couple 620 errors this morning (different error from above but related) thanks brian On Apr 1, 11:24 am, Donnie Demuth donnie.dem...@gmail.com wrote: Thanks Marzia, That's excellent, and I'm glad to know that I'm not

[google-appengine] how to set --datastore_path from manage.py

2009-04-20 Thread Dave
I've look high and low so my apologies if I've missed the answer. How does one set --datastore_path= when using mange.py? I'm having the problem where my datastore get's cleaned out randomly and need to move datastore from /tmp. Thanks in advance for the help! Dave

[google-appengine] Re: Retrieving Large Query Sets Containing Inequality Operators

2009-04-20 Thread djidjadji
You can use a unique counter for all the entities. 2**128 is a lot. You can use a sharded counter to generate the unique id's, it uses a transaction. 2009/4/20 Chris Spencer chriss...@gmail.com: Thanks, that's a good thought. I agree that it should be done in a transaction. However, I don't

[google-appengine] Re: appcfg.py update_cron Server Error (500)

2009-04-20 Thread Anthony Baxter
Monitor issue 1333 in the public tracker to track this bug. On Apr 18, 8:53 am, Jonathan-23andMe jhan...@23andme.com wrote: I would like to second a request for this fix :) My app too starts with a didgit. On Apr 17, 6:57 am, Kai yikai.1...@gmail.com wrote: Thank for your reply, Anthony

[google-appengine] Re: appcfg.py update_cron Server Error (500)

2009-04-20 Thread Anthony Baxter
It shouldn't require a release to fix, it's a backend issue. On Apr 17, 11:57 pm, Kai yikai.1...@gmail.com wrote: Thank for your reply, Anthony Definitely, the name of my app begins with a digit. OK, I will wait for next release. On Apr 17, 1:08 pm, Anthony  Baxter anthonybax...@gmail.com

[google-appengine] Re: Cron Job Fails 301 Error

2009-04-20 Thread Anthony Baxter
Do you get any sort of useful traceback in the error logs for your application? You should hopefully see these just like a normal request error. On Apr 18, 7:09 am, drthink drgenejo...@gmail.com wrote: I am using Google App Engine with Django.  I have started using theCronjobs functionality

[google-appengine] serving google app to my own domain

2009-04-20 Thread bdlance...@gmail.com
How can i serve a google app to my own domain? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com To unsubscribe from this

[google-appengine] Re: Made a few GAE Java Tutorials

2009-04-20 Thread SK
On Apr 15, 9:25 am, Leandro lemi...@gmail.com wrote: Hello I'm Leandro and Ive made a few tutorials for the brnd new Java version of the Google App Engine. You hava done a great work! Below Is the live version and the svn from google code. -http://code.google.com/p/gae-java-tutorial1/

[google-appengine] Re: can not connecton to localhost:8080

2009-04-20 Thread FedericoCP
It would be great if somebody could PLEASE explain this a little bit further. I'm having the same issue, I can start a server for a helloworld sample, but I can't browse it! I have Vista Ultimate 64, logged with administrator privileges, and already tried with shuttind down the firewall, starting

[google-appengine] how to create google maps with mashed with about 10,000 geo codes

2009-04-20 Thread perinouk
Hi, I have an urgent need to present about 10,000 locations on a google map. I have geo codes (latitude and longitude) for the locations but I need to understand how I can quickly create a map like this and if I need to host this locally or google allow me to host it on their servers. Also, I

[google-appengine] Current malfunctioning

2009-04-20 Thread Nick Winter
Is anyone else's app throwing widespread InternalErrors right now all of a sudden, or is it just ours? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

[google-appengine] bash: dev_appserver.py: command not found

2009-04-20 Thread abuhijlehJordan
I am using UBUNTU 8.1. I have followed all procedures literally, I have downloaded google SKD and uzipped it inside /home/ahijleh. After that I renamed the folder to GEA. I have followed other steps literally, however when I try to run the web server I get the following:

[google-appengine] push http not allowed?

2009-04-20 Thread q2
I am planning to create a web application that will use BlazeDS server to push data to Flash clients. Would I be able to install it in Google App Engine environment? It comes bundles with Tomcat server, so probably I would need to install Tomcat as well. Also, this sentence about Google App

[google-appengine] Re: New bie Question

2009-04-20 Thread vijay
I got the answer on other thread http://groups.google.com/group/google-appengine-java/browse_thread/thread/f6052ac60cff68ac/d84b7a9e1f504953?q=Error+running+javac.exe+compiler#d84b7a9e1f504953 On Mon, Apr 20, 2009 at 10:21 AM, vijay mymail.vi...@gmail.com wrote: ping!! On Mon, Apr 20, 2009

[google-appengine] the user-agent problem

2009-04-20 Thread ttwait
i want to use the urlfetch get the ebay item data use the url http:// cgi.ebay.com/ws/eBayISAPI.dll?ViewItemitem=160318863192, it can response the gzip data, but it need the request header like: headers = { 'Accept-Encoding' : 'gzip', 'User-Agent' : 'Mozilla/4.0 (compatible; MSIE 6.0;

[google-appengine] datastore

2009-04-20 Thread cristi
I saw that java appengine use JDO or JPA (datanucleus) What this means is: If i plan to not use appengine in a moment in time i will be able to run my application with a relation databse like mysql or postgres ? So Db layer code does not know if beneath is google's bigtable or some

[google-appengine] Re: New bie Question

2009-04-20 Thread vijay
ping!! On Mon, Apr 20, 2009 at 12:05 AM, vijay mymail.vi...@gmail.com wrote: Hi All, I am new to app engine, I tried to install eclipse plugin of appengine and run the sample guestbook application, but I got same errors like following when opening http:\\localhost:8080 Error running

[google-appengine] Command Not found

2009-04-20 Thread abuhijlehJordan
I've been trying run GAE SDK on my UBUNTU 8.10. I have followed the procedures, literally. I have unzipped the content of GAE in the home folder in a folder called GEA. However when I try to run dev_appserver I get the following error command not found What I am missing guys? your prompt

[google-appengine] Re: Key values in GWT?

2009-04-20 Thread ray
Can you use Key (and User) objects in GWT? If so, what module do you Are you referring to AppEngine's Key and User object? You can use the db.Key ( http://code.google.com/appengine/docs/python/datastore/typesandpropertyclasses.html ) and UserProperty for properties of a Model subclass if you

[google-appengine] Re: Setting up netbeans for GAE

2009-04-20 Thread jamiebarrow
On Apr 17, 12:17 pm, nuboat nub...@gmail.com wrote: Hi, You can see from my bloghttp://www.thaidev.org/?p=196 really sorry i write in Thai language but i thought you can see from images. if you don't understand. you can ask me via blog comment. Although it's Thai, the screenshots and

[google-appengine] Datastore down?

2009-04-20 Thread sma
Is the datastore down? I get the following errors: File /base/python_lib/versions/1/google/appengine/api/datastore.py, line 166, in Put raise _ToDatastoreError(err) File /base/python_lib/versions/1/google/appengine/api/datastore.py, line 1965, in _ToDatastoreError raise

[google-appengine] Re: Java Vs Python

2009-04-20 Thread twansc...@googlemail.com
With python you have access to the full power of django (using app- engine-patch) making web development much more easy and clean even i do not know which web framework is supported for java yet. --~--~-~--~~~---~--~~ You received this message because you are

[google-appengine] Re: I have trouble to visite my account

2009-04-20 Thread Rachael
I got exactly the same error as sixer. It happened to my 2nd account and has been that for two days. Thank you! R On Apr 13, 11:00 am, Jeff S j...@google.com wrote: You account should be working now. Please let me know if you are still having issues. Happy coding, Jeff On Fri, Apr 10,

[google-appengine] Re: Suggestion: delete google-appengine group.

2009-04-20 Thread jamiebarrow
On Apr 17, 7:09 pm, ramu rslet...@gmail.com wrote: You can alwasy choose not to receive any mails from this group and read the discussions thorough web interface. Thankx... I think the problem is it's focused at the App Engine, and not Java/ Python specifically for App Engine.. so he wants

[google-appengine] Re: Current malfunctioning

2009-04-20 Thread sma
We get the following errors related to saving data: File /base/python_lib/versions/1/google/appengine/api/datastore.py, line 166, in Put raise _ToDatastoreError(err) File /base/python_lib/versions/1/google/appengine/api/datastore.py, line 1965, in _ToDatastoreError raise

[google-appengine] Advanced search using indexes (or, can I evaluate only some of the properties of an index?)

2009-04-20 Thread Xar
Hi everybody, I'm developing a website that tries to offer advanced search, which in SQL could be resolved adding 'where' clauses to queries dynamically, but I don't know how to implement it using Appengine's datastore. Let's say it's a book search engine, for which I have more than 30 search

[google-appengine] Re: stuck with sitemap issue

2009-04-20 Thread Sylvain
- url: /sitemap.xml static_files: XML/sitemap.xml upload: XML/sitemap.xml last line : upload: [XML]/sitemap.xml :add XML On 18 avr, 07:51, cabhishek cabhis...@gmail.com wrote: Hi all, i am stuck with the same problem .. i hand the static handler in app.yaml file as follows - url:

[google-appengine] Re: Datastore down?

2009-04-20 Thread Sylvain
same here internal error File /base/python_lib/versions/1/google/appengine/api/ datastore.py, line 1965, in _ToDatastoreError raise errors[err.application_error](err.error_detail) InternalError: internal error On 20 avr, 16:05, Windzero windz...@gmail.com wrote: same here, totally dead

[google-appengine] Re: Datastore down?

2009-04-20 Thread Sylvain
And http://code.google.com/status/appengine/shows no issue. Strange. On 20 avr, 16:14, Sylvain sylvain.viv...@gmail.com wrote: I've 2 apps : one is ok, the other is ko. On 20 avr, 16:13, Sylvain sylvain.viv...@gmail.com wrote: same here internal error   File

[google-appengine] Cannot Deploy

2009-04-20 Thread ericsk
Is the server down? There're exceptions while I deploy my application. $ appcfg.py update . Scanning files on local disk. Initiating update. Cloning 63 static files. Cloning 36 application files. Uploading 2 files. 2009-04-20 22:14:06,807 ERROR appcfg.py:1235 An unexpected error occurred.

[google-appengine] Re: Datastore down?

2009-04-20 Thread Gee
same, cannot put On Apr 20, 7:16 am, Sylvain sylvain.viv...@gmail.com wrote: Andhttp://code.google.com/status/appengine/showsno issue. Strange. On 20 avr, 16:14, Sylvain sylvain.viv...@gmail.com wrote: I've 2 apps : one is ok, the other is ko. On 20 avr, 16:13, Sylvain

[google-appengine] Re: Concurrency Threading...

2009-04-20 Thread Andy Freeman
Unfortunately I cant seem to get app engine to run two threads concurrently to simulate two users taking action at the same time. Are you concerned with the development server or the production server? The development server is single threaded and there doesn't seem to be any way to fix that.

[google-appengine] How to verify my account by SMS?

2009-04-20 Thread monkeycz
Hello: I want create an application with google app engine, but when I verify account by SMS, I got The phone number has been sent too many messages or has already been used to confirm an account. message. I changed a new mobile number, I got You have sent too many SMS verification messages.

[google-appengine] Re: Datastore down?

2009-04-20 Thread Nick Winter
I think some models can be put, and others can't. Don't see a pattern, though. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

[google-appengine] Re: Datastore down?

2009-04-20 Thread Sylvain
I've 2 apps : one is ok, the other is ko. On 20 avr, 16:13, Sylvain sylvain.viv...@gmail.com wrote: same here internal error   File /base/python_lib/versions/1/google/appengine/api/ datastore.py, line 1965, in _ToDatastoreError     raise errors[err.application_error](err.error_detail)

[google-appengine] GQL Query with IN operator Issue (bug or am i making a mistake?)

2009-04-20 Thread ecognium
Hello everyone, I noticed an odd behavior with GQL query when it has two IN operators and a regular condition. Below is some basic code to reproduce the problem: class DummyData(db.Model): x = db.StringListProperty() y = db.TextProperty() class Dummy(webapp.RequestHandler):

[google-appengine] geohash and geographic queries

2009-04-20 Thread jguix
Hi, I was trying to use geohash as an index for bbox queries in an app engine application, following this approach: http://labs.metacarta.com/blog/27.entry Since I am storing only points, I choose to use geohash instead of geoindex, but I got strange results, i.e. lots of points out of the bbox

[google-appengine] Re: Cannot Deploy

2009-04-20 Thread timpickles
I'm having the same issue under Java. Creating staging directory Scanning for jsp files. Scanning files on local disk. Initiating update. Unable to upload: java.io.IOException: Error posting to URL: http://appengine.google.com/api/appversion/create?app_id=version=1; 500 Internal Server

[google-appengine] Re: GQL Query with IN operator Issue (bug or am i making a mistake?)

2009-04-20 Thread Andy Freeman
db.TextProperty is not an indexable property. That means that it's not queryable either. It would be nice if to get an exception or some other indication of what's going on. However, note that indexable is something that happens in the datastore when an instance is store. If you change a

[google-appengine] Re: Setting up netbeans for GAE

2009-04-20 Thread jamiebarrow
P.S.: I am unable to setup eclipse for some reasons... Why are you unable to setup eclipse? It has a very nice plugin, I'd recommend getting it to work :) Perhaps post any issues you encountered? I haven't used netbeans with App Engine, since Netbeans handles its own ant build script. I have

[google-appengine] Re: Datastore down?

2009-04-20 Thread Joshua Smith
Same here in two of my apps! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com To unsubscribe from this group, send email

[google-appengine] Cannot deploy to Google App Engine

2009-04-20 Thread bambrikii
jdk: jdk1.6.0_10 sdk: appengine 1.2 Unable to upload: java.io.IOException: Error posting to URL: http://appengine.google.com/api/appversion/create?app_id=bambrikiiversion=1; 400 Bad Request Invalid runtime specified. at com.google.appengine.tools.admin.ServerConnection.send

[google-appengine] New to app-engine

2009-04-20 Thread vijay
Hi All,I am planning to use gwt + appengine to develop and deploy my website. I am new to both of this though I completed the installation part and getting started tutorial of both of this. It would be great if you people can give me some tips and other things I should be careful about during the

[google-appengine] Re: Datastore down?

2009-04-20 Thread br...@ifeets.com
Same here On Apr 20, 10:34 am, Joshua Smith jesm...@kaon.com wrote: Same here in two of my apps! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to

[google-appengine] Re: Datastore down?

2009-04-20 Thread Windzero
same here, totally dead for me On Apr 20, 9:41 pm, sma s...@basepointmedia.com wrote: Is the datastore down? I get the following errors: File /base/python_lib/versions/1/google/appengine/api/datastore.py, line 166, in Put    raise _ToDatastoreError(err)  File

[google-appengine] stuck with sitemap issue

2009-04-20 Thread cabhishek
Hi all, i am stuck with the same problem .. i hand the static handler in app.yaml file as follows - url: /sitemap.xml static_files: XML/sitemap.xml upload: sitemap.xml source folder structure is as follows -helloworld -src -XML -sitemap.xml i deployed the application and

[google-appengine] GAE-based helpdesk system

2009-04-20 Thread Stan
Hello, I need some help understanding the deployment methods for GAE. I have a technical education, but always been a PM and never an actual developer and maybe that's why I'm here looking for help. :) We're considering moving our web application (helpdesk system) to the GAE. It is currently

[google-appengine] Re: Datastore down?

2009-04-20 Thread Joshua Smith
I think they might be working on it. The error message just changed to: File /base/python_lib/versions/1/google/appengine/ext/db/ __init__.py, line 669, in put return datastore.Put(self._entity) File /base/python_lib/versions/1/google/appengine/api/ datastore.py, line 164, in Put

[google-appengine] Datastore Java API Overview Typo

2009-04-20 Thread Ben M. Scholl
The Datastore Java API Overview page http://code.google.com/appengine/ docs/java/datastore/overview.html has a typo. The constructor in the Employee class (Employee.java) should read Employee, not Person. Current: public Person(String firstName, String lastName, Date hireDate) { Should be:

[google-appengine] Re: Datastore down?

2009-04-20 Thread sma
Yes they are working on it now - status is also updated: http://code.google.com/status/appengine On Apr 20, 4:44 pm, Joshua Smith jesm...@kaon.com wrote: I think they might be working on it.  The error message just changed to:   File /base/python_lib/versions/1/google/appengine/ext/db/

[google-appengine] Re: Datastore down?

2009-04-20 Thread Sylvain
Yes, they are working on it : * Starting this morning at approximately 6:30 AM PST, App Engine has experienced datastore issues - specifically, increased error rates on datastore API calls affecting some applications. We are proceeding with unplanned

[google-appengine] Re: Datastore down?

2009-04-20 Thread peterk
Having weird problems..long response times and getting logged out and stuff from my site (possibly because of memcache or datastore issues). Status shows problems with datastore, serving and memcache right now. On Apr 20, 3:51 pm, Sylvain sylvain.viv...@gmail.com wrote: Yes, they are working on

[google-appengine] Re: Cannot Deploy

2009-04-20 Thread Adam Loving
I am seeing the same thing. On Apr 20, 7:17 am, ericsk eri...@gmail.com wrote: Is the server down? There're exceptions while I deploy my application. $ appcfg.py update . Scanning files on local disk. Initiating update. Cloning 63 static files. Cloning 36 application files. Uploading 2

[google-appengine] Re: Versions issue

2009-04-20 Thread Carter Rabasa
I'm having the same problem (id = twitter2ff). I've tried incrementing the version number, to no avail. Can someone please help? On Apr 16, 4:07 pm, Николай Тенев tenev.niko...@gmail.com wrote:   Hi Jeff, changing version in app.yaml and upload works. AppID is facebook-playground.appspot.com

[google-appengine] Re: Command Not found

2009-04-20 Thread Eric Walker
Is the subdirectory that contains dev_appserver on your PATH? It needs to be in order for the command shell to find it. On my own laptop the subdirectory is /usr/local/bin, since I installed GAE using the Mac OS installer. In .bashrc I have: export PATH=snip:/usr/local/bin:snip With your

[google-appengine] Re: Verification issues and http://appengine.google.com/waitlist/sms_issues not working

2009-04-20 Thread Michael Makunas
It works now. Thank you! -Michael On Apr 15, 12:16 pm, Jeff S (Google) j...@google.com wrote: Hi Michael, Could you try signing in again, I believe this should now be fixed. Apologies for the inconvenience. Happy coding, Jeff On Tue, Apr 14, 2009 at 7:24 AM, Michael Makunas

[google-appengine] Re: Datastore down?

2009-04-20 Thread br...@ifeets.com
Ye I'm back up and running. On Apr 20, 11:26 am, br...@ifeets.com br...@ifeets.com wrote: Is anyone else getting File /base/python_lib/versions/1/google/ appengine/api/apiproxy_rpc.py, line 111, in CheckSuccess     raise self.exception?

[google-appengine] Re: Datastore down?

2009-04-20 Thread ksjun
They said that it will be less than 30 minutes(5 minute target?), but it's over than 50 minutes and nothing is changed - Datastore writes are temporarily disabled. No one at Google say what's going on and when it will finish. --~--~-~--~~~---~--~~ You received

[google-appengine] Re: Datastore down?

2009-04-20 Thread Joshua Smith
Our apps are back up also. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to this group, send email to google-appengine@googlegroups.com To unsubscribe from this group, send email to

[google-appengine] Re: New to app-engine

2009-04-20 Thread dartdog
GWT with app-engine is a new feature, welcome to the bleeding edge! make sure you get Eclipse going through the tutorials. through a sample deploy. good luck. On Apr 19, 1:44 pm, vijay mymail.vi...@gmail.com wrote: Hi All,I am planning to use gwt + appengine to develop and deploy my website. I

[google-appengine] Re: Current malfunctioning

2009-04-20 Thread Chris Thorpe
Getting the same error as you Nick... On Apr 20, 2:54 pm, sma s...@basepointmedia.com wrote: We get the following errors related to saving data: File /base/python_lib/versions/1/google/appengine/api/datastore.py, line 166, in Put    raise _ToDatastoreError(err)  File

[google-appengine] Re: Datastore down?

2009-04-20 Thread tvshowpush
same here On 4月20日, 下午9时41分, sma s...@basepointmedia.com wrote: Is the datastore down? I get the following errors: File /base/python_lib/versions/1/google/appengine/api/datastore.py, line 166, in Put raise _ToDatastoreError(err) File

[google-appengine] Re: Datastore down?

2009-04-20 Thread tvshowpush
yes they are working on it. App Engine Team appengine.nore...@gmail.com Starting this morning at approximately 6:30 AM PST, App Engine has experienced datastore issues - specifically, increased error rates on datastore API calls affecting some applications. We are proceeding with unplanned

[google-appengine] Is XSLT transformation available for Java?

2009-04-20 Thread Anthony
Hi, I've tried to execute a XSLT transformation in the Java appengine and had the following error [xins-petstore/1.332875993655738810].stdout: 2009-04-18 13:02:13,146 ERROR org.xins.common.lowlevel.1052 petst...@localhost: 090418-130212386:3e483 Programming error detected by class

[google-appengine] Re: Cannot Deploy

2009-04-20 Thread Greg Graham
I'm having a similar problem. All I want to do is update one template file. I had no problems doing updates last Friday. $ python appcfg.py update /z/git/online_forms/thomas-aquinas/ Scanning files on local disk. Initiating update. 2009-04-20 10:10:10,934 ERROR appcfg.py:1235 An unexpected error

[google-appengine] How to change entity class kind ?

2009-04-20 Thread tommytastic
I am using appengine and appenginepatch for django I have a class defined in my models that was inheriting from db.Model. I've now changed it to polymodel.PolyModel. Since making the change, my existing entities are no longer retrievable. Is there a way to access them or convert them? Whats

[google-appengine] Re: Cannot Deploy

2009-04-20 Thread Greg Graham
I just tried again, and now it works. On Apr 20, 10:24 am, Adam Loving adamlov...@gmail.com wrote: I am seeing the same thing. On Apr 20, 7:17 am, ericsk eri...@gmail.com wrote: Is the server down? There're exceptions while I deploy my application. $ appcfg.py update . Scanning files

[google-appengine] google-appengine@googlegroups.com

2009-04-20 Thread Ken Corey
Has anyone succeeded in using z3c.rml with AppEngine yet? I've got a need to create a complex and long document that something like a z3c.rml would be much handier. I've spent the best part of today trying (in vain) to get it simply working on my windows command line, much less from within the

[google-appengine] Re: GQL Query with IN operator Issue (bug or am i making a mistake?)

2009-04-20 Thread 风笑雪
Don't use in, just use equal: q = db.GqlQuery(SELECT * FROM DummyData where x = 'c' and x = 'a') And you can read this document: http://code.google.com/intl/zh-CN/appengine/docs/python/datastore/entitiesandmodels.html#Lists 2009/4/19 ecognium ecogn...@gmail.com Hello everyone, I noticed an odd

[google-appengine] using z3c.rml on AppEngine?

2009-04-20 Thread Ken Corey
Rats! Scuppered the subject. Sorry about the re-post! Has anyone succeeded in using z3c.rml with AppEngine yet? I've got a need to create a complex and long document that something like a z3c.rml would be much handier. I've spent the best part of today trying (in vain) to get it simply

[google-appengine] Re: push http not allowed?

2009-04-20 Thread 风笑雪
GAE must give a response in 30 seconds. So if you want use server push, you have to let clients disconnect every 30 seconds, then build new connections( maybe use AJAX ). Gmail is doing this way, but I think it's very difficult to do it. 2009/4/20 q2 tauru...@gmail.com I am planning to create

[google-appengine] Re: unicode object has no attribute 'has_key'

2009-04-20 Thread Jeff S (Google)
Hi buger, Since the kind class has changed, the new validation logic is applied when loading older objects, as you noticed. I think the simplest way to get these objects and migrate your data would be to get them using the old class definition and assign values to the properties which will be

[google-appengine] Re: The sitemap file

2009-04-20 Thread 风笑雪
- url: /sitemap.xml static_files: XML/sitemap.xml upload: XML/sitemap.xml # and XML should be a static_dir: - url: /XML # or some other path static_dir: XML 2009/4/18 cabhishek cabhis...@gmail.com Hi, I am stuck with same problem.. i created a static handler - url: /sitemap.xml

[google-appengine] Re: Spring, Css mapping error, appending index.html.

2009-04-20 Thread G
Any progress on this issue? I have the same problem. On Apr 16, 2:28 pm, Puran mailtopu...@gmail.com wrote: Thanks, When i do that not sure why it tries to look in the location / iii/css/home.css instead and complains .. i thought it should be just inside war/css/home.css . do i need to

[google-appengine] Re: How to change entity class kind ?

2009-04-20 Thread 风笑雪
You need fetch them use the ordinary model, then create new entities using the value you get from them, finally, save new ones and delete old ones. 2009/4/20 tommytastic tommytas...@gmail.com I am using appengine and appenginepatch for django I have a class defined in my models that was

[google-appengine] Re: Google Apps account - can't enable HTTPS or remove App Engine from domain

2009-04-20 Thread Chris L
Thanks for your tips. Actually, everything seems to be working, including secure HTTPS access (https://my-app-name.appspot.com), so I'm just ignoring the warning for now. And I have a moved permanently redirect on my naked domain anyway. On Apr 18, 8:20 pm, 风笑雪 kea...@gmail.com wrote: BTW, you

[google-appengine] Re: becoming an app administrator with google apps account

2009-04-20 Thread Jeff S (Google)
Hi Jon, Could you try option 2 again? Also, what are the account settings you are using for this app, I'm assuming it is associated with Google Accounts instead of being restricted to a Google Apps domain. Thank you, Jeff On Sat, Apr 18, 2009 at 1:29 PM, jhf555 jhf...@gmail.com wrote: I'm

[google-appengine] Re: dumb guy trying to access datastore remotely with remote_api

2009-04-20 Thread Jeff S (Google)
Hi Ben, What are the account settings for this app? Could I see the app ID? Thank you, Jeff On Sat, Apr 18, 2009 at 1:56 PM, Ben Nevile ben.nev...@gmail.com wrote: I was able to get appengine_console.py to launch in OS X with the help of this message:

[google-appengine] Appengine downtime on Apr 20 2009

2009-04-20 Thread pran__
Hi AppEngine team, First of all, i would like to say that you all did a wonderful job by fixing the issue/downtime in appengine on Apr 20 2009, 06:30 AM PDT so fast. This job is really appreciable. There were a few glitches tough. I would like to know about two things - 1. What was the cause

[google-appengine] Re: Datastore down?

2009-04-20 Thread pran__
The issue is fixed. Cheers :-) On Apr 20, 7:54 pm, tvshowpush tvshowpushad...@gmail.com wrote: yes they are working on it. App Engine Team appengine.nore...@gmail.com Starting this morning at approximately 6:30 AM PST, App Engine has experienced datastore issues - specifically, increased

[google-appengine] Re: how to set --datastore_path from manage.py

2009-04-20 Thread dar
If you are using app-engine-patch the syntax is slightly different, you use: --datastore_path filename.datastore --history_path filename.history (no =, use a space) On Apr 20, 9:17 am, Dave ddev...@gmail.com wrote: I've look high and low so my apologies if I've missed the answer. How does

[google-appengine] Re: Remove naked domain from appengine application

2009-04-20 Thread Chris L
For what it's worth, I'm just going to leave things as they are. I only wanted to remove my application because there is a warning that I must reinstall it to enable secure access. But HTTPS is working in spite of this. See also: http://groups.google.com/group/google-appengine/t/97f26584f22fd3a3

[google-appengine] Re: Are you a human ?

2009-04-20 Thread Dan Sanderson
Hi Tom - Can you explain what you mean by a large database put? Are you using the bulk uploader tool? The error message you quoted is printed by appcfg when it gets a certain error from the Google Accounts system. This error can be caused by several things, including multiple unsuccessful login

[google-appengine] programmatic maintenance notification

2009-04-20 Thread jeremy
it would be nice to have formalized notification of maintenance events - a single appengine.google.com url returning something like: datastore: down - eta 1 hour memcache: up urlfetch: up and so on... i subscribe to google-appengine-downtime-not...@googlegroups.com, but i'd like my site to

[google-appengine] API for programatically adding GAE application domain alias in 'Google Apps' control panel: Service Settings

2009-04-20 Thread Guy Davis
Hi all, An app I'm building is going to use subdomains to separate groups of users. For example: group1.myapp.com group2.myapp.com These are configured in the 'Service Settings' control panel of the Google Apps Dashboard for myapp.com. Currently, this is a manual process with the

[google-appengine] Re: programmatic maintenance notification

2009-04-20 Thread jeremy
hmm, actually it would have to be it's own maintenance api (if urlfetch went down the app wouldn't be able to access this). On Apr 20, 2:48 pm, jeremy jeremy.a...@gmail.com wrote: it would be nice to have formalized notification of maintenance events - a single appengine.google.com url

[google-appengine] Re: dumb guy trying to access datastore remotely with remote_api

2009-04-20 Thread Nick Johnson
Hi Ben, Is your admin account a Google Apps one (eg, not @gmail.com or @googlemail.com)? Authentication using these accounts is somewhat broken. What you can do is create a gmail.com account specifically for this, and add it as another admin for the app, then authenticate using that. -Nick

[google-appengine] Re: programmatic maintenance notification

2009-04-20 Thread peterk
I think this has been suggested before, but yeah, was just also thinking of this in light of today's down time. It would be nice to have a custom status page (hosted off GAE) that could show users what's up with my app at any given time. On Apr 20, 8:02 pm, jeremy jeremy.a...@gmail.com wrote:

[google-appengine] Re: IE Problem with POST - 400 Bad request: Your client has issued a malformed or illegal request

2009-04-20 Thread spiewko
I have the exact same problem with my app running on GAE..I have tested with IE6 and 7..Have to test with Mozilla as well! The problem is I am unable to find enough help over the Internet as this is relatively new..Any inputs from your end? Unfortunately I didn't manage to solve this:(. I

[google-appengine] Re: Cron job never runs

2009-04-20 Thread Jeff S (Google)
Hi Dustin, There was an issue a few hours ago which effected cron jobs. However, they should be running again, please let me know if they are not. For more details, see the post in the downtime notify group:

[google-appengine] Re: Cron job never runs

2009-04-20 Thread dustin
My cron jobs don't seem to be running properly either. The problem seems to be new as they were operating fine just a few days ago. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google App Engine group. To post to

[google-appengine] XML serializer for Java

2009-04-20 Thread Denis Tsyplakov
Hi! Could somebody point me, which XML serializer is not restricted under Google App Engine for Java. I have tried two: - JAXB - Simple (http://simple.sourceforge.net/) both is not working. I did not like an idea of writing my own lightweight serializer. --- WBR Den.

[google-appengine] Re: SMS Verification

2009-04-20 Thread Jeff S (Google)
Hi GGLab, At this point I don't think that the number will become available again. In cases like this I recommend filling out the form listed here: What can I do if for any reason I'm unable to receive an SMS message? http://code.google.com/appengine/kb/sms.html#error What is the email address

[google-appengine] Re: server.log like jboss

2009-04-20 Thread Jeff S (Google)
Hi Paul, Are you running the SDK from the command line of from Eclipse (or another IDE)? The SDK will usually display error messages to stdout. Thank you, Jeff On Thu, Apr 16, 2009 at 2:20 PM, paulm paulmarso...@gmail.com wrote: Hi, Is there a way to see the system log on the SDK or app

  1   2   >