[google-appengine] Deploy app to several appengines at the same time..?

2010-12-20 Thread Dieter Krachtus
Hi, For different testing purposes I want to deploy the same app to 3 different appengines and make the new version the default version. So far I simply typed everything on the command line 3 times. I haven't given it much thought so far but I guess there is a more elegant approach to automate thi

[google-appengine] Re: GAE/J And Task Queue Exceptions

2010-12-20 Thread Patrick Twohig
Whoops. I guess I'm a dumb ass and I forgot to read the docs fully: http://code.google.com/appengine/docs/java/javadoc/com/google/appengine/api/taskqueue/TaskAlreadyExistsException.html ...oh it's been a long night On Mon, Dec 20, 2010 at 11:13 PM, Patrick Twohig wrote: > Hi, > > I'm using

[google-appengine] GAE/J And Task Queue Exceptions

2010-12-20 Thread Patrick Twohig
Hi, I'm using the task queue to write a task that will iterate over all entities of a certain kind in the datastore. The task needs to perform an operation on each entity once, so I basically do a two-pass approach. ON the first pass, I actually iterate the entities enqueueing a separate task fo

[google-appengine] Re: my app has been "disabled"

2010-12-20 Thread vrypan
OK, mystery solved. Ikai's emails contained the links that were used by spammers, and GMail treated them as... spam :-) This is something that the support team might have in mind for the future... P. On Dec 21, 7:53 am, vrypan wrote: > Ikai, thanks for stepping in, but I still can't find any em

[google-appengine] Re: -1L exception?

2010-12-20 Thread Tim Hoffman
With out a stack trace is pretty hard work work out. T -- 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-appeng...@googlegroups.com. To unsubscribe from this group, send email to google-appengine+

[google-appengine] -1L exception?

2010-12-20 Thread ten_foot_ninja
My app catches an exception with -1L as the description. Does anyone know anything about this? It seems some what random, but typically related to how much resources my call uses (the more resources, the more likely this error is returned). thanks -- You received this message because you are subs

[google-appengine] Re: App Engine cannot vacuum indexes - stuck in building state for weeks - need google help

2010-12-20 Thread Alexander M
Hi, It would be great if someone from google could clear out the indexes that have been stuck in "Building" state for a few weeks now. I am not able to vacuum them out for some reason. My application is "LingoLocus". Thank you and kind regards Alexander On Dec 18, 12:26 am, Alexander M wrote:

[google-appengine] Re: my app has been "disabled"

2010-12-20 Thread vrypan
Ikai, thanks for stepping in, but I still can't find any emails from you in my inbox. Could you please resend whatever you have send me? (BTW, I just received an order receipt from AppEngine, so I'm sure I'm checking the right email) Thank you, Panayotis. On Dec 20, 11:08 pm, "Ikai Lan (Google)"

[google-appengine] Re: GAE error - Try Again (503) An unexpected failure has occurred. Please try again.

2010-12-20 Thread Chris K
It started working again the next day, without any changes. There must have been a problem on the server. - Chris On Dec 20, 11:00 am, Robert Kluin wrote: > Hi Chris, >   If you are still having this issue, you might try passing the > --no_precompilation flag to appcfg.py when you're trying t

[google-appengine] Re: Help desk app

2010-12-20 Thread Julian Namaro
Hi Richard, Check out Rietveld, it is open source and could be a good base for building your project: http://code.google.com/appengine/articles/rietveld.html On Dec 21, 12:47 am, Richard wrote: > I am looking for something simple I can customize to integrate with our > existing business process

[google-appengine] Re: Billing for additional RAM

2010-12-20 Thread Norlesh
Hi Kash, I have no idea about what the charge would be - only thing I found to suggest that it could be possible in the future was something eluded to in the last post of http://code.google.com/p/googleappengine/issues/detail?id=1646 on 13 Dec where a googler mentioned checking out the 'backgroun

Re: [google-appengine] Help desk app

2010-12-20 Thread Plumo
yes I'm looking for open source software to help run my business. I am willing to pay for it. The online helpdesk services I looked at like mojo either lack needed features or have so many features they are confusing to use. So I want something open source which I can modify, rather than starti

[google-appengine] Re: my app has been "disabled"

2010-12-20 Thread nickmilon
False alarm then. +1 IKai for cleaning the mess although I was sure it was something like this. On Dec 20, 11:08 pm, "Ikai Lan (Google)" wrote: > I'm working with him off-list to resolve the issue. > > In general, it's important to remember that as application developers, you > are responsible f

Re: [google-appengine] gql query over an n:m relationship

2010-12-20 Thread Robert Kluin
You would need to denormalize your data in some way to do that. The datastore does not support that type of JOIN. Do not think in terms of SQL while you are developing your data-structures. A little bit of useful info about how the datastore works: http://code.google.com/appengine/articles/dat

[google-appengine] "Create Application" failed in middle of processing

2010-12-20 Thread Oboero Admin
After checking the availability of an appname, I clicked the "Create Application" and it failed in the middle of processing my request. When I Check Availability now, it says that the appid is no longer available. I have a feeling that my request is in some kind of "stuck" state. Can someone

Re: [google-appengine] doubt about TOS regarding betting related app

2010-12-20 Thread jose antonio lorenzo
Robert, Ikai, thank you for your answers. The blackjack example is very illustrative, but what I want to do is half-way the montecarlo-simulation and the explicit advise. So I think the best thing to do is to contact the legal department of google and see if they may clarify things a bit more.

Re: [google-appengine] get key of a datastore entity

2010-12-20 Thread Ikai Lan (Google)
Can't you just call the accessor of Member after it is saved? -- Ikai Lan Developer Programs Engineer, Google App Engine Blogger: http://googleappengine.blogspot.com Reddit: http://www.reddit.com/r/appengine Twitter: http://twitter.com/app_engine On Sun, Dec 12, 2010 at 3:20 PM, ping wrote: >

Re: [google-appengine] doubt about TOS regarding betting related app

2010-12-20 Thread Ikai Lan (Google)
Warning: I am not a lawyer. This would probably *not* be a violation of our terms of service, however, you should absolutely speak to an attorney first because this is a huge gray area. For instance, if you were to run a Monte Carlo blackjack simulation on App Engine, that would most likely be oka

[google-appengine] gql query over an n:m relationship

2010-12-20 Thread ping
I have an entity A which is related to an entity B through a n:m relationship. class A { ... @Persistent private Set B_entities; ... } class B { ... @Persistent private Group group; @Persistent private Set A_entities; ... } Now i want to write a query which gives me all the entities A of a spec

Re: [google-appengine] Re: my app has been "disabled"

2010-12-20 Thread Ikai Lan (Google)
I'm working with him off-list to resolve the issue. In general, it's important to remember that as application developers, you are responsible for the content that is posted to your application. If objectionable content is reported that violates the terms of service, someone from our team will usu

Re: [google-appengine] Help desk app

2010-12-20 Thread Robert Kluin
The mail API is pretty straight forward. If you have existing stuff you're trying to integrate with, take a look at it: http://code.google.com/appengine/docs/python/mail/ Or are you just asking for an open source app to run your business with? Robert On Mon, Dec 20, 2010 at 10:47, Richa

Re: [google-appengine] Images Python API: Two issues regarding PNG transparency

2010-12-20 Thread A. Stevko
Could it be this issue? http://code.google.com/p/googleappengine/issues/detail?id=4170 On Mon, Dec 20, 2010 at 5:43 AM, Tammo Freese wrote: > Hi all, > > > I currently try to use the Images Python API to scale images. While > scal

Re: [google-appengine] REST web service client in gae

2010-12-20 Thread Robert Kluin
Hi José, Yes, you can consume REST webservices using an App Engine app. http://code.google.com/appengine/docs/java/urlfetch/ The Python gdata libs have been modified to use URLFetch on App Engine, I suspect the Java libs have as well. Robert 2010/12/20 José Miguel Bataller : > Hi

Re: [google-appengine] I want to install Google App Engine on my web server !

2010-12-20 Thread Ross M Karchner
Though, it's worth saying, it will not be "as simple as Joomla" to run Typhoon or Appscale on your own server. On Mon, Dec 20, 2010 at 3:39 PM, Robert Kluin wrote: > AppScale > > > > > > > On Mon, Dec 20, 2010 at 15:35, Ravi Sharma wrote: > > is there anything for java? > > > > On Mon, Dec 20, 2

Re: [google-appengine] I want to install Google App Engine on my web server !

2010-12-20 Thread Robert Kluin
AppScale On Mon, Dec 20, 2010 at 15:35, Ravi Sharma wrote: > is there anything for java? > > On Mon, Dec 20, 2010 at 6:40 PM, Barry Hunter > wrote: >> >> http://code.google.com/p/typhoonae/ >> >> On 19 December 2010 22:25, EquatorLounge wrote: >> > I want to build a website using the djang

Re: [google-appengine] I want to install Google App Engine on my web server !

2010-12-20 Thread Ravi Sharma
is there anything for java? On Mon, Dec 20, 2010 at 6:40 PM, Barry Hunter wrote: > http://code.google.com/p/typhoonae/ > > On 19 December 2010 22:25, EquatorLounge wrote: > > I want to build a website using the django framework on the google app > > engine on MY own server.. > > > > I know GAE p

Re: [google-appengine] Re: my app has been "disabled"

2010-12-20 Thread Maxim Veksler
+1 On Mon, Dec 20, 2010 at 10:10 PM, Joshua Smith wrote: > Thanks for posting this to the list. His story was disconcerting, and it's > good to hear that he didn't respond to your emails. > > -Joshua > > On Dec 20, 2010, at 2:18 PM, Ikai Lan (Google) wrote: > > Hi, > > I sent you an email a week

Re: [google-appengine] Re: my app has been "disabled"

2010-12-20 Thread Joshua Smith
Thanks for posting this to the list. His story was disconcerting, and it's good to hear that he didn't respond to your emails. -Joshua On Dec 20, 2010, at 2:18 PM, Ikai Lan (Google) wrote: > Hi, > > I sent you an email a week requesting a response. Please check your inbox for > emails from m

Re: [google-appengine] Re: my app has been "disabled"

2010-12-20 Thread Ikai Lan (Google)
Hi, I sent you an email a week requesting a response. Please check your inbox for emails from me addressed to the billing administrator of your application (vrypan@). Because you didn't respond, I was forced to disable your application. Your application is in violation of our terms of service bec

Re: [google-appengine] GAE error - Try Again (503) An unexpected failure has occurred. Please try again.

2010-12-20 Thread Robert Kluin
Hi Chris, If you are still having this issue, you might try passing the --no_precompilation flag to appcfg.py when you're trying to update. Robert On Sat, Dec 18, 2010 at 12:05, Chris K wrote: > Hi, > > I'm getting the 503 error when I try to deploy my app. > I deployed it months ago wit

Re: [google-appengine] Datastore Admin is showing an error page

2010-12-20 Thread Robert Kluin
Does your app only allow logins from an Apps domain, and has it been mapped to a custom domain? I hit this issue a lot, once you've added a 'custom domain' you can no longer access the app via the appspot.com URL -- phenomenally frustrating. Robert On Mon, Dec 20, 2010 at 03:20, Praveen .

Re: [google-appengine] how to fix this invalid syntax exception?

2010-12-20 Thread Robert Kluin
Production App Engine runs Python 2.5. This is a good example of why you should do your development on 2.5 too. Try doing this instead: class Registry(dict): # your stuff Registry = singleton(Registry) Robert On Mon, Dec 20, 2010 at 12:03, retif wrote: > why this code rai

Re: [google-appengine] I want to install Google App Engine on my web server !

2010-12-20 Thread Barry Hunter
http://code.google.com/p/typhoonae/ On 19 December 2010 22:25, EquatorLounge wrote: > I want to build a website using the django framework on the google app > engine on MY own server.. > > I know GAE provides space for free with datastore and django and > everything but i WANT TO USE MY SERVER ju

Re: [google-appengine] doubt about TOS regarding betting related app

2010-12-20 Thread Robert Kluin
You should ask unrelated questions in separate emails. If you would like to run and App Engine app on your own systems, look at TyphoonAE and/or AppScale. On Sun, Dec 19, 2010 at 17:30, Savvy on EquatorLounge wrote: > sounds interesting but why dont u email Google App Engine directly ? > b

Re: [google-appengine] doubt about TOS regarding betting related app

2010-12-20 Thread Robert Kluin
I'm sure if you email le...@google.com with your question they can provide an answer for you. Also, you should talk to an attorney; as I understand, stuff related to gambling is regulated in some areas. I have also heard that regulations sometimes include restricting how you are allowed to receiv

Re: [google-appengine] how to fix this invalid syntax exception?

2010-12-20 Thread Eli Jones
Oh.. and the issue is that you can't do Class decorators this way in Python 2.5 (while you can do them in 2.6). Just google around for "class decorators" "python 2.5" .. to see potential work-arounds. On Mon, Dec 20, 2010 at 1:04 PM, Eli Jones wrote: > Make sure you are using the dev_appserver

Re: [google-appengine] how to fix this invalid syntax exception?

2010-12-20 Thread Eli Jones
Make sure you are using the dev_appserver with python2.5 This code will work fine in 2.6.. but it breaks in 2.5.. thus, once you get deployed to Appengine (which runs Python 2.5).. you will get the syntax error. On Sun, Dec 19, 2010 at 1:40 PM, retif wrote: > why this code raises : invalid synt

Re: [google-appengine] doubt about TOS regarding betting related app

2010-12-20 Thread Savvy on EquatorLounge
sounds interesting but why dont u email Google App Engine directly ? btw, i hope you can answer that mysterious question of mine: I want to build a website using the django framework on the google app engine on MY own server.. I know GAE provides space for free with datastore and django and every

[google-appengine] I want to install Google App Engine on my web server !

2010-12-20 Thread EquatorLounge
I want to build a website using the django framework on the google app engine on MY own server.. I know GAE provides space for free with datastore and django and everything but i WANT TO USE MY SERVER just in case lol oh just how these letters in capitals are creepy ! Is it not as simple as uploa

[google-appengine] REST web service client in gae

2010-12-20 Thread José Miguel Bataller
Hi all, My situation is the following, I am able to run restful web services using the wink library for Java in the google appengine without any problem and I am having problems when I try to go one step further, trying to consume remote restful web services with JSON responses from inside my res

[google-appengine] Billing for additional RAM

2010-12-20 Thread kash
I wonder if anyone knows how google plans to charge for additional RAM usage. they never mentioned that. They mentioned that they bill for those resources: ResourceUnitUnit costOutgoing Bandwidthgigabytes$0.12Incoming Bandwidth gigabytes$0.10CPU TimeCPU hours$0.10Stored Datagigabytes per month$

[google-appengine] Billing for additional RAM

2010-12-20 Thread Mohamed kash
Hi All .. I wonder if anyone knows how google plans to charge for additional RAM usage. they never mentioned that /Kash -- 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-appeng...@googlegroups.com.

[google-appengine] Images Python API: Two issues regarding PNG transparency

2010-12-20 Thread Tammo Freese
Hi all, I currently try to use the Images Python API to scale images. While scaling works generally, there are two issues I'd love to know a way to work around: - If I resize and crop a PNG image having an 8 bit alpha channel: Expected: Transparency is not affected by scale & crop. Actual: T

[google-appengine] how to fix this invalid syntax exception?

2010-12-20 Thread retif
why this code raises : invalid syntax (main.py, line 15) ? problem is only on production server. dev_appserver works ok def main(): def singleton(cls): instances = {} def getinstance(): if cls not in instances: instances[cls] = cls() return in

[google-appengine] Unauthorized Error 401. I can't found the solution in this forum, so I post it here. Hope someone can help me!

2010-12-20 Thread Paul
The problem is : I can use appcfg.py to upload the python programe, and also can update success. When I use the app engine to register a android client gmail, It is success, and I can find the registered account in the app engine server, but when I use the python in server to send message to andro

[google-appengine] GAE error - Try Again (503) An unexpected failure has occurred. Please try again.

2010-12-20 Thread Chris K
Hi, I'm getting the 503 error when I try to deploy my app. I deployed it months ago with no problems. Since then, I bought a new laptop and transferred my files over, so some settings or the local Python version may have changed. I made a small change to the app today locally (changed some text).

[google-appengine] how to fix this invalid syntax exception?

2010-12-20 Thread retif
why this code raises : invalid syntax (main.py, line 15) ? problem is only on production server. dev_appserver works ok def main(): def singleton(cls): instances = {} def getinstance(): if cls not in instances: instances[cls] = cls() ret

Re: [google-appengine] Help desk app

2010-12-20 Thread Richard
I am looking for something simple I can customize to integrate with our existing business processes. The business is essentially negotiating contracts with clients and then managing the projects with contractors. -- You received this message because you are subscribed to the Google Groups "Go

Re: [google-appengine] Help desk app

2010-12-20 Thread Sarfaraz
free lunch? On Dec 20, 2010 6:15 PM, "supercobra" wrote: > Could you describe what you are trying to achieve? > > > On Mon, Dec 20, 2010 at 9:11 AM, Richard Baron Penman > wrote: >> yes there are many proprietary paid help desk systems like mojo, but that's >> not what I'm after. >> Is there atle

Re: [google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-20 Thread Julien Lancelot
Sorry, it was a mistake, I'd like to kwnow if the IP (not url :( ) is unique? Or, how to we know the different IPs? Because the goal is to have specifics IP that I can give to the web service. On Mon, Dec 20, 2010 at 16:09, Barry Hunter wrote: > On 20 December 2010 14:08, Julien Lancelot > wro

Re: [google-appengine] Help desk app

2010-12-20 Thread supercobra
Could you describe what you are trying to achieve? On Mon, Dec 20, 2010 at 9:11 AM, Richard Baron Penman wrote: > yes there are many proprietary paid help desk systems like mojo, but that's > not what I'm after. > Is there atleast an email app running on GAE, which I could integrate > tickets wi

Re: [google-appengine] Help desk app

2010-12-20 Thread Richard Baron Penman
yes there are many proprietary paid help desk systems like mojo, but that's not what I'm after. Is there atleast an email app running on GAE, which I could integrate tickets with? On Tue, Dec 21, 2010 at 1:05 AM, supercobra wrote: > Mojo Helpdesk is integrated with Google apps and receives em

Re: [google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-20 Thread Barry Hunter
On 20 December 2010 14:08, Julien Lancelot wrote: > I like the managed solution, apigee.com that you already gave in a previous > message. > The first time I go on the website I thought it was only for specific API as > twitter, facebook, etc... But now I create a account and I see it can > connec

Re: [google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-20 Thread Julien Lancelot
I like the managed solution, apigee.com that you already gave in a previous message. The first time I go on the website I thought it was only for specific API as twitter, facebook, etc... But now I create a account and I see it can connect on any services. I try to connect on my SOAP web service,

Re: [google-appengine] Help desk app

2010-12-20 Thread supercobra
Mojo Helpdesk is integrated with Google apps and receives email, create tickets, set ticket status, etc... Not on GAE yet but fully integrated with single sign on and Google accounts. www.mojohelpdesk.com On Mon, Dec 20, 2010 at 7:35 AM, Richard wrote: > Have any open source help desk apps b

[google-appengine] Help desk app

2010-12-20 Thread Richard
Have any open source help desk apps been built for GAE? Something that receives emails, creates a ticket, send replies, set ticket status, etc -- 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-appe

Re: [google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-20 Thread Barry Hunter
On 20 December 2010 12:24, jlancelot wrote: > Yes Barry, I'm afraid that the proxy could become a performance > bottleneck for my application. Even if it's only a prototype for the > moment, I don't want to be bloqued in the futur because of a bad > choice... > > Have you (or someone on the net ;)

[google-appengine] Re: Newbie Q - Public IP address_DNS Server?

2010-12-20 Thread jlancelot
Yes Barry, I'm afraid that the proxy could become a performance bottleneck for my application. Even if it's only a prototype for the moment, I don't want to be bloqued in the futur because of a bad choice... Have you (or someone on the net ;) ) a good proxy hosts to give me? Thanks a lot for all!

Re: [google-appengine] Re: Channel API: a suggestion

2010-12-20 Thread Iap
I am second to Will. The queued feature is good for a busy sever which may have to send several messages to the newly-connected client during the download-and-initialization interval. My suggestion is to allow flush the queue when calls create_channel, say, .create_channel(token, flush=True) if fl

[google-appengine] Datastore Admin is showing an error page

2010-12-20 Thread Praveen ....
Currently, when I click on my Datastore Admin option in my application I get this error Error: Server ErrorThe server encountered an error and could not complete your request. If the problem persists, please report your problem and mention this