Re: [google-appengine] Re: 500 - Request was aborted after waiting too long to attempt to service your reques

2021-10-19 Thread Jonathan Giorgio Ghellere
Hello, You had this error you mentioned + some huge 100s latencies? We received lots of these errors on October 13th, it lasted for 6 hours straight. We believe it was due to some Datastore slowness. We opened a google's support case, still, they had no clue what happened and just pointed us at

[google-appengine] get SSL certificate (appspot.com) to consume WS deployed on GCP

2021-07-06 Thread Jonathan Acosta
Hello everyone, how are you? I need to get the ssl certificate of this WS to consume it from my application https://ecommerce-apis-dot-api-project-307770427626.uc.r.appspot.com/ecommerce-APIS/exist/102096 I have tried to obtain the default ssl certificate (domain appspot.com) but I can't find

[google-appengine] Re: Parsing date-time values from JSON fails in standard environment

2020-11-17 Thread Barisere Jonathan
I had this issue throughout last week, but I cannot reproduce it any longer. No dependency changed, it just stopped. Thank you for being here to help. If I encounter it again and find a way to reproduce it, I'll let you know. On Monday, 16 November 2020 at 22:46:00 UTC+1 Elliott (Cloud

[google-appengine] Parsing date-time values from JSON fails in standard environment

2020-11-16 Thread Barisere Jonathan
Hi everyone. I am unable to parse time values from JSON when I deploy to app engine standard environment. I'm using the Go 1.14 runtime. The time values are sent in ISO-8601 (or RFC 3339) format. It works in every other environment except on app engine. Does the app engine standard environment

[google-appengine] Re: Appspot or whatever Google Cloud Product is being used for phishing site https://storage.cloud.google.com/us8111nn1178n1.appspot.com/index.htm

2019-12-30 Thread Michael Jonathan Andres
Hi Jad, Thank you for your response. We would like to know on when will the appropriate team take action? We have used the link that you provided and it didn't work after several tries. Regards, Wilfredo On Sunday, December 29, 2019 at 11:15:36 AM UTC+8, Jad El Houssami wrote: > > Hello

[google-appengine] Re: Java Standard: successfully deploy but no instances: The server encountered an error and could not complete your request.

2019-10-25 Thread Jonathan Tinsman
the new library. I would have thought the build would have failed with an incorrect version of the library but I guess I missed a newbie mistake. Thank you. Jonathan. On Friday, October 25, 2019 at 7:14:16 AM UTC-7, George (Cloud Platform Support) wrote: > > Hello Jonathan, > >

[google-appengine] Java Standard: successfully deploy but no instances: The server encountered an error and could not complete your request.

2019-10-25 Thread Jonathan Tinsman
I recently had to do an update to an older Java Spring Boot application and initially ran into a problem connecting to firebase. I had tried several different configurations, all of which deployed to GAE successfully until I realized that I had to update my firebase-admin sdk to 3.x. Once doing

[google-appengine] Re: No admin rights in GCP/can't create projects in GCP when logging in as GSuite SuperAdmin

2018-04-23 Thread Jonathan Herbert
to get your Organization ID. > > > > On Sunday, April 22, 2018 at 11:50:04 AM UTC-4, Jonathan Herbert wrote: >> >> I am logged into GCP as the GSuite SuperAdmin. I must have deleted >> something by accident in GCP as I am unable to create projects. I get the >> er

[google-appengine] No admin rights in GCP/can't create projects in GCP when logging in as GSuite SuperAdmin

2018-04-22 Thread Jonathan Herbert
I am logged into GCP as the GSuite SuperAdmin. I must have deleted something by accident in GCP as I am unable to create projects. I get the error message: "You may not have permission to create projects in this organisation. Contact your Google Apps account admin to verify that you have the

Re: [google-appengine] Re: Is Datastore lookup-by-key strongly consistent when write is done in Python module and read is done in Java module?

2016-11-02 Thread Jonathan Munson
In this case, it means "overwrite with new value without reading". On Wednesday, November 2, 2016 at 8:52:17 PM UTC-4, pdknsk wrote: > > > At the moment I can't see how to apply transactions. > > It depends on whether update means "read, change value, write back" or > "overwrite with new value

Re: [google-appengine] Re: Is Datastore lookup-by-key strongly consistent when write is done in Python module and read is done in Java module?

2016-11-02 Thread Jonathan Munson
ng some weird 0.01% edge behavior. > > Transactions are the only way to guarantee that get/update/put cycles have > the effect you think they do. This is the first thing I would fix before > trying anything else. > > Jeff > > On Tue, Nov 1, 2016 at 5:42 PM, Jonathan Munson

Re: [google-appengine] Re: Is Datastore lookup-by-key strongly consistent when write is done in Python module and read is done in Java module?

2016-11-01 Thread Jonathan Munson
Good thought, but in this case only one user can update the entity. On Tuesday, November 1, 2016 at 6:13:13 PM UTC-4, pdknsk wrote: > > If more than one user can update the same entity, the bug may be that > you're not updating the entity atomically (as in a transaction). > -- You received

Re: [google-appengine] Re: Is Datastore lookup-by-key strongly consistent when write is done in Python module and read is done in Java module?

2016-11-01 Thread Jonathan Munson
you schedule > your hand-off to Java after the transaction has committed? > > On Monday, October 31, 2016 at 10:54:28 PM UTC-5, Jonathan Munson wrote: >> >> I don't believe I use Objectify, unless it's used transparently by the >> Java Datastore API. Here's a snipp

Re: [google-appengine] Re: Is Datastore lookup-by-key strongly consistent when write is done in Python module and read is done in Java module?

2016-10-31 Thread Jonathan Munson
Jeff's response. Objectify and NDB >> do not use the same entries in Memcache. So while NDB on Python >> invalidated *its* cache entry, Objectify used a different namespace and >> thus the Objectify cached entry is still there. >> >> On Monday, October 31, 201

Re: [google-appengine] Re: Is Datastore lookup-by-key strongly consistent when write is done in Python module and read is done in Java module?

2016-10-31 Thread Jonathan Munson
on is already a hard problem (that and naming things, as > they say). If you want to access data from both python and java, best to > disable the memcache behavior of both NDB and Objectify (don’t put @Cache > on anything shared). > > Jeff > > On Mon, Oct 31, 2016 at 2:01

[google-appengine] Re: Is Datastore lookup-by-key strongly consistent when write is done in Python module and read is done in Java module?

2016-10-31 Thread Jonathan Munson
va cache may return a stale result because the >> Python module didn't clear/update the entity on write. >> >> On Monday, October 31, 2016 at 8:41:07 AM UTC-5, Jonathan Munson wrote: >>> >>> Hi, >>> >>> We have an app wherein a Datastore entity

[google-appengine] Is Datastore lookup-by-key strongly consistent when write is done in Python module and read is done in Java module?

2016-10-31 Thread Jonathan Munson
Hi, We have an app wherein a Datastore entity is written to by a Python module (using NDB), and then in an immediately following request, read from, using the entity's key, by a Java module. In a situation where the app was heavily loaded, it seemed like the Java module was reading stale data.

[google-appengine] [ANN] new mailing list for Google APIs with Go

2016-07-01 Thread 'Jonathan Amsterdam' via Google App Engine
If you use Go to access Google APIs (for example, by using the Google Cloud API clients at import paths starting with "google.golang.org/cloud"), we recommend you join the new group google-api-go-announce . We at Google will use that

[google-appengine] You don't have permission to see App Engine application in this project.

2016-06-13 Thread Jonathan Nativ
Access denied to: https://console.cloud.google.com/appengine/quotadetails?project==default Message: You don't have permission to see App Engine application in this project. Never happened before Any idea how to get into my appengine account? -- You received this message because you are

[google-appengine] How to use Datastore and Cloud SQL together

2014-10-02 Thread Jonathan Solorzano
I need an scalable database, and i know that NoSQL is the best option for that, but i also need an interface that will help me observe my data with some complex sql query, and SQL is the way to do so, but i don't know how to use SQL NoSQL together. According to Google I/O 2012 - SQL vs

[google-appengine] Lag with google datastore

2014-01-24 Thread jonathan pedoeem
Hello all, I am working on making an extremely simple blog for a udacity class I am taking, one problem I have ran into is that whenever I submit a new post and redirect to the front page of the website the post does not appear. I have to refresh the page and only then it does appear (only

[google-appengine] Re: Duplicate app when you have too many apps

2013-12-19 Thread Jonathan Brier
Try disabling a few of your apps and try migrating. I found that as long as you have less than your limit active you can migrate then enable the migrated apps. On Wednesday, December 18, 2013 12:29:07 AM UTC-5, Zachary Yaro wrote: I am also running into this issue on my account

[google-appengine] Is this a valid statement of Task Queue in GAE In some cases, a single task may be executed more than once or not at all.

2013-07-18 Thread Jonathan Twomley
I have a push Task Queue that has task's that run based on an ETA. When the task run's it creates pull Task Records. When each pull task record is created we check to see that was_enqueued == true This all works great on a small amount of load. When we are under a large load it appears that

[google-appengine] Migration to HRD blocked due to max free applications claimed

2013-03-25 Thread Jonathan Brier
I am unable to migrate to HRD due to not having any free applications to create a duplicate of current names. I have a few application names unused, but were claimed and should be able to be directly upgraded which is not possible in the current upgrade path. I need someone from Google to

Re: [google-appengine] Migration to HRD blocked due to max free applications claimed

2013-03-25 Thread Jonathan Brier
a few empty slots you can use to upgrade your main maps in turn. On Mon, Mar 25, 2013 at 8:37 PM, Jonathan Brier brier...@gmail.comwrote: I am unable to migrate to HRD due to not having any free applications to create a duplicate of current names. I have a few application names unused

Re: [google-appengine] Duplicate app when you have too many apps

2013-02-11 Thread Jonathan Brier
I'm also running into the Migration limit due to having claimed 10 free app id's after learning to use Google App Engine. Adding permissions to have more id's on an account would fix this for me. Not knowing how pervasive this issue is but a more graceful approach would have improved the

[google-appengine] High performance image serving error 500

2012-11-13 Thread Jonathan
Hi, for the last 30 minutes users can't upload pictures to my system (app.imcreator.com/edit) that's the erroe from the log: ApplicationError: 7 Traceback (most recent call last): File /base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/_webapp25.py, line 712, in

[google-appengine] Newbie

2012-07-29 Thread jonathan drake
a recent incident in my community, I feel like I need to make that happen. Any suggestions are much appreciated. Thank you, Jonathan -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit https

[google-appengine] Unicode regex pattern in Webapp2 WSGIApplication URL Mapping

2012-05-09 Thread Jonathan
In the python regex module, when you set the re.UNICODE flag, the '\w' word pattern will match the characters [0-9_] plus whatever is classified as alphanumeric in the Unicode character properties database. i.e. It will match the characters a-z in English. It will also match latin

[google-appengine] Cant run dev server

2012-04-01 Thread Jonathan Bailey
/Jonathan/Downloads/google_appengine-2/dev_appserver.py, line 125, in module run_file(__file__, globals()) File /Users/Jonathan/Downloads/google_appengine-2/dev_appserver.py, line 121, in run_file execfile(script_path, globals_) File /Users/Jonathan/Downloads/google_appengine-2/google/appengine

[google-appengine] Re: Cant run dev server

2012-04-01 Thread Jonathan Bailey
I meant to link to this tutorial https://developers.google.com/appengine/docs/go/gettingstarted/helloworld -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit

[google-appengine] Re: Cant run dev server

2012-04-01 Thread Jonathan Bailey
Found the problem, stupid TextEdit was saving the files with .txt extension and then hiding the extensions On Sunday, April 1, 2012 1:42:52 PM UTC+1, Jonathan Bailey wrote: I meant to link to this tutorial https://developers.google.com/appengine/docs/go/gettingstarted/helloworld -- You

[google-appengine] getting all entities of type from datastore

2012-04-01 Thread Jonathan Bailey
The example herehttps://developers.google.com/appengine/docs/go/gettingstarted/usingdatastoreshows how to fetch at most 10 items, but I would like to retrieve all the of items, in order to loop through them. How do I go about this? Like how do I create an array (or slice as Go seems to call

[google-appengine] Setting up Go in eclipse for GAE

2012-03-31 Thread Jonathan B
I'm trying desperately to get working on an app I need to write in Go rather than Java. However I have no idea where to start installing. The tutorials on the various sites of Go, Goclipse and GAE are very confusing. Some are for old versions. Others I simply don't understand the wording. Is

[google-appengine] Re: Setting up Go in eclipse for GAE

2012-03-31 Thread Jonathan B
used any IDE doing it however On Mar 31, 2012, at 4:52 PM, Jonathan B jon.bailey...@gmail.com wrote: I'm trying desperately to get working on an app I need to write in Go rather than Java. However I have no idea where to start installing. The tutorials on the various sites of Go

Re: [google-appengine] Re: Problem with mail quota

2012-03-16 Thread Jonathan Nativ
Hi Christina, Billing enabled on 2012-03-08 21:25:20. I guess it's too much to ask for a fair disclosure of the We recently made a change ... prior to getting into this 'pay for nothing scheme'. On Wed, Mar 14, 2012 at 6:53 PM, Christina Ilvento cilve...@google.comwrote: Hi All, We recently

Re: [google-appengine] Re: Problem with mail quota

2012-03-16 Thread Jonathan
Hi Christina, Billing enabled on 2012-03-08 21:25:20. I guess it's too much to ask for a fair disclosure of the We recently made a change ... prior to getting into this 'pay for nothing scheme'. On Wednesday, March 14, 2012 6:53:47 PM UTC+2, Christina Ilvento wrote: Hi All, We recently made

[google-appengine] Re: Channel API between front and backend instances

2012-03-15 Thread Jonathan Harris
Any news on this potential fix? On Thursday, 28 July 2011 19:56:22 UTC+1, Justin Haugh wrote: Not at the moment, but we're working on a fix for this, so that a channel created by a frontend can be used by a backend, and vice-versa. I can't provide an exact release date at this point, but

Re: [google-appengine] Re: paid user, email delivered, but can't be received

2012-03-13 Thread Jonathan
Thanks for asking but NOT at all. On Monday, March 12, 2012 11:28:42 AM UTC+2, Paco Paco wrote: Jonathan, have you found a solution yet? On Sat, Mar 10, 2012 at 12:47 AM, Jonathan jonathan.na...@gmail.comwrote: I've exactly the same problem, after the first 100 recipients the delivery

[google-appengine] Re: paid user, email delivered, but can't be received

2012-03-10 Thread Jonathan
I've exactly the same problem, after the first 100 recipients the delivery is blocked. After 24hours there is a reset , and so on. I have 10$/day budget but it does not help. On Thursday, March 8, 2012 5:11:38 AM UTC+2, Paco Paco wrote: The first charge was cleared, and 5000 emails are

[google-appengine] Re: Google App Engine Down?

2012-03-10 Thread Jonathan
I've exactly the same problem, after the first 100 recipients the mail delivery is blocked. After 24hours there is a reset , and so on. I have 10$/day budget but it does not help. app-id: or-point On Tuesday, March 6, 2012 11:13:13 PM UTC+2, Holly Orr wrote: We are paying for the service, and

Re: [google-appengine] Re: Problem with mail quota

2012-03-10 Thread Jonathan
I've exactly the same problem, after the first 100 recipients the delivery is blocked. After 24hours there is a reset , and so on. I have 10$/day budget but it does not help. app-id: or-point On Friday, February 10, 2012 12:22:56 AM UTC+2, Ikai Lan wrote: We're running a batch job right now

Re: [google-appengine] Issue after HRD migration: 100 email quota until first charge cleared

2012-03-10 Thread Jonathan
Hi Christina I've a similar problem, after the first 100 recipients the delivery is blocked. After 24hours there is a reset , and so on. I have 10$/day budget but it does not help. app-id: or-point On Monday, March 5, 2012 10:56:52 PM UTC+2, Christina Ilvento wrote: Hi Anders, Would you

Re: [google-appengine] Mail quota Problem

2012-03-10 Thread Jonathan
I've a similar problem: after the first 100 recipients the delivery is blocked. After 24hours there is a reset , and so on. I have 10$/day budget but it does not help at all. The limit is 100/24h. app-id: or-point On Sunday, February 12, 2012 7:39:44 AM UTC+2, Robert Kluin wrote: They've been

[google-appengine] paid email quota

2012-03-09 Thread Jonathan
Could you please tell me how to enable the paid email My Max Daily Budget is $10.00 The email was blocked after 100 recipients It says: Recipients Emailed 100%100 of 100 1 $0.01/ 100 Recipients $0.01 Resource is currently experiencing a short-term quota limit.

Re: [appengine-java] Re: Deploy Hangs - Please help

2012-03-01 Thread Jonathan Chen
On Thursday, 1 March 2012 19:57:55 UTC+13, Amir wrote: Having the same issue, i've been trying for a full 24 hours now... tried incrementing version, no luck. They've finally fixed it. It now works for me. -- You received this message because you are subscribed to the Google Groups

[appengine-java] Re: Problem with exception on server startup when GAE sdk is in svn

2012-03-01 Thread Jonathan Chen
On Friday, 2 March 2012 08:24:40 UTC+13, dilbert wrote: Thanks Rick for the valuable information. I do not like the idea of mixing jars from different versions just for svn's sake. For now I'll remove GAE SDK from svn and handle things manually which is a real pain. Hope they fix this

Re: [appengine-java] Re: Deploy Hangs - Please help

2012-03-01 Thread Jonathan Chen
On Friday, 2 March 2012 06:55:46 UTC+13, Amir wrote: Yeah we noticed it was fixed at 12:12AM last night. I wish they'd give an explanation for what happened, and why it won't happen again. We've got a lot riding on GAE. Yeah, same here. The status pages didn't even register any issue

[appengine-java] Re: Deploy Hangs - Please help

2012-02-29 Thread Jonathan Chen
Same here. I've been trying for more than 12 hours now, and still have failures during deployment. -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit

[appengine-java] Re: Deploy Hangs - Please help

2012-02-29 Thread Jonathan Chen
Hmm, looks like there's a maintenance outage at the moment? -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine-java/-/Ws3EsMTzOOkJ. To post to

Re: [appengine-java] Re: Deploy Hangs - Please help

2012-02-29 Thread Jonathan Chen
On Thursday, 1 March 2012 13:35:29 UTC+13, Matthew Johnson wrote: I had the same issue last night, incrementing the version number this morning made seemed to allow it to deploy successfully. Bumping the version number did not do it for my app. This really makes me lose faith in Java GAE.

Re: [google-appengine] Potentially blocking issues as we near production: TLS/SSL, POST/PUT chunked encoding, support options

2012-01-17 Thread Jonathan Layes
, not a showstopper for us right now but 18x7x365 coverage for P1 requests would be more in line with other cloud providers at a $500/mo price point. Thanks, Jonathan -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion

Re: [google-appengine] Potentially blocking issues as we near production: TLS/SSL, POST/PUT chunked encoding, support options

2012-01-17 Thread Jonathan Layes
terribly wrong with our app, I can call on someone close to the hardware (or its cloud facsimile) to look at the problem. Jonathan -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit https

[google-appengine] Potentially blocking issues as we near production: TLS/SSL, POST/PUT chunked encoding, support options

2012-01-16 Thread Jonathan Layes
appears to have both better and more affordable support options. Are there plans to provide other support plans in the future? Thanks, Jonathan -- You received this message because you are subscribed to the Google Groups Google App Engine group. To view this discussion on the web visit https

[appengine-java] Re: ThreadLocal seems not to be working sometimes

2011-10-24 Thread Jonathan Nash
something to do with a class (not the application class) that calls GaeApplication.getInstance() being reconstituted from serialization and checking the hashcode but am not really sure and have no idea why that would impact ThreadLocal in any way. Jonathan -- You received this message because

Re: [google-appengine] Re: Keep it short: Who is forced to leave GAE?

2011-09-05 Thread Jonathan B
Ever since Larry Page become CEO, Google has got worse and worse and worse. From UI changes for users, to this. I can understand wanting to raise the pricing, but why an entirely new model that changes the cost so variably between users. Why didn't you just lower the free limit on the old

[google-appengine] Re: Error 403: --- begin server output ---You do not have permission to modify this app

2011-07-25 Thread Jonathan
to push? Robert On Sun, Jul 24, 2011 at 14:47, Jonathan jonathan.na...@gmail.com wrote: Is there any chance that after providing a wrong password I was permanently locked out? On Jul 24, 10:30 pm, Jonathan jonathan.na...@gmail.com wrote: After two years of successful uploads of all my

[google-appengine] Error 403: --- begin server output ---You do not have permission to modify this app

2011-07-24 Thread Jonathan
After two years of successful uploads of all my five applications I've changed to Django 1.2 Now it says: You do not have permission to modify this app Details: Application: reimbu-germany; version: 570 Host: appengine.google.com Starting update of app: reimbu-germany, version: 570 Scanning

[google-appengine] Re: Error 403: --- begin server output ---You do not have permission to modify this app

2011-07-24 Thread Jonathan
Is there any chance that after providing a wrong password I was permanently locked out? On Jul 24, 10:30 pm, Jonathan jonathan.na...@gmail.com wrote: After two years of successful uploads of all my five applications I've changed to Django 1.2 Now it says: You do not have permission to modify

[google-appengine] Re: Urgent - unable to deploy app

2011-06-11 Thread Jonathan
Did you check the Main/Logs information at https://appengine.google.com/logs?app_id=user-tagging The error information details are quite useful On Jun 10, 1:20 pm, Grant grant.klop...@gmail.com wrote: Hi At the worst possible moment Appengine has decied to stop deploying my app

[google-appengine] Re: Physical server location

2011-06-02 Thread Jonathan Chen
Isn't it prudent to say that GAE will do all the loadbalancing for you when they have more datacenters overseas? On Jun 1, 10:45 am, Geoffrey Spear geoffsp...@gmail.com wrote: On Jun 1, 1:32 pm, prasanna pjaganat...@gmail.com wrote: Hi Is there a way to specify the preferred location where

[google-appengine] Re: Error: Server Error

2011-05-27 Thread Jonathan
wrote: Hi Jonathan,   Try checking your app's logs in the dashboard, you might find more information there. Robert On Tue, May 10, 2011 at 15:29, Jonathan jonathan.na...@gmail.com wrote: The following error message is showing up when trying to activate my my last version http://540

[google-appengine] GAE vs other stuff Clouds and the rest

2011-05-13 Thread Jonathan Chen
one cloud to another cloud is still very difficult, and never an easy job. Any cloud infrastructure then becomes somewhat vendor lock-in. Though GAE's datastore API' take more time to migrate over. Jonathan C. -- You received this message because you are subscribed to the Google Groups Google

[google-appengine] Re: GAE vs other stuff Clouds and the rest

2011-05-13 Thread Jonathan Chen
to say that I have some faith that Google will make it okay for us small Python developers in the future :) Jonathan C. On May 13, 2:44 pm, nickmilon nickmi...@gmail.com wrote: Well this is hard to answer. Things look very liquid right now especially for python apps. IMHO that you wait a little

[google-appengine] Error: Server Error

2011-05-10 Thread Jonathan
The following error message is showing up when trying to activate my my last version http://540.reimbu-poland.appspot.com/ : *Error: Server Error* *The server encountered an error and could not complete your request.* *If the problem persists, please report your problem and mention this error

Re: [google-appengine] Re: Better support for linux

2010-10-07 Thread Jonathan Gossage
Another solution that will work if you are developing in Python is to use Eclipse with the Pydev plugin installed. Pydev includes support for GAE that replaces the launcher and I use the environment daily switching between Ubuntu and Windows 7. I have never needed to use the GAE launcher because

Re: [appengine-java] Re: Entity class is not enhanced!!

2010-07-02 Thread Jonathan He
you can see the enhancer log which will be generated when you compile your code. 2010/7/2 Didier Durand durand.did...@gmail.com Hello, The enhancer sometimes doesn't start on classes. The best way I have found to make it run each time is to name explicitly all my jdo-annotated classes in

[appengine-java] Doable? Create multiple CSV files and zip it up

2010-05-21 Thread Jonathan
? Thanks in advance. Jonathan -- You received this message because you are subscribed to the Google Groups Google App Engine for Java group. To post to this group, send email to google-appengine-j...@googlegroups.com. To unsubscribe from this group, send email to google-appengine-java+unsubscr

[google-appengine] Re: I'm trying to build my first Google app, could someone point me in the right direction?

2010-04-07 Thread Jonathan
My personal experience: For small applications I've gave up the server at all. All you need is mydomain.com and a Google site. Registering at name.com have an initial automated setup for google site. From this point on you already own a site (hosted by Google) with all the services you might need

[google-appengine] Re: Google App Engine Code

2010-04-02 Thread Jonathan
I understand that you receive the verification code by SMS If so, what is the message you receive? Is it The phone number has been sent too many messages or has already been used to confirm an account. ??? Please check the following link:

[google-appengine] Re: Google Domain

2010-03-30 Thread Jonathan
name.com is providing an automated initial setup to yourdomain.com to become google site From this moment you have up to 50 email.addr...@yourdomain.com and all the other google gadgets Now, you can link your GAE to yourdomain.com. It can be linked to www.yourdomain.com or to

[google-appengine] Re: Login to Google app engine application using Google sites email + password

2010-03-29 Thread Jonathan
OK, thanks Google account can be created with any e-mail address On Mar 28, 9:47 pm, Wooble geoffsp...@gmail.com wrote: On Mar 28, 6:04 am, Jonathan jonathan.na...@gmail.com wrote: Would like to enable users of Google sites with their own domain and email to log into my Google app engine

[google-appengine] Login to Google app engine application using Google sites email + password

2010-03-28 Thread Jonathan
Would like to enable users of Google sites with their own domain and email to log into my Google app engine application without creating an additional gmail account just for that purpose. Looks like an obvious issue because those users are already using a complete infrastructure of Google

[google-appengine] Re: SMS Confirmation Problem

2010-03-26 Thread Jonathan
Yes - it was just about creating a new application with an existing account. On Mar 25, 7:26 pm, Barry Hunter barrybhun...@googlemail.com wrote: You dont need to create a new account, to create a new app. An account can have by default 10 apps. On 25 March 2010 06:04, Jonathan jonathan.na

[google-appengine] Re: SMS Confirmation Problem

2010-03-26 Thread Jonathan
wrote: You dont need to create a new account, to create a new app. An account can have by default 10 apps. On 25 March 2010 06:04, Jonathan jonathan.na...@gmail.com wrote: I already have one app-engine application Just wanted to create the second one It says that: The phone number

[google-appengine] Re: SMS Confirmation Problem

2010-03-26 Thread Jonathan
://appengine.google.com/a/yourdomain.com/rather thanhttp://appengine.google.com/to create new apps. On 26 March 2010 10:16, Jonathan jonathan.na...@gmail.com wrote: Walk-around: Used my wife's mobile, received the code and activated my second  app- engine application I have at home two

[google-appengine] SMS Confirmation Problem

2010-03-25 Thread Jonathan
I already have one app-engine application Just wanted to create the second one It says that: The phone number has been sent too many messages or has already been used to confirm an account. Of course, this phone was used to confirm an account. What now? PS - on a regular basis I'm receiving SMS

[google-appengine] Re: I can't get to my dashboard.

2010-02-02 Thread Jonathan Feinberg
On Feb 2, 10:18 am, Jonathan Feinberg e.e.c...@gmail.com wrote: My attempt to access the URL    http://appengine.google.com/dashboard?app_id=wordle Results in     Error: Server Error FYI, I cleared my cookies, and was able to get in. I still consider this a show-stopper. -- You received

[google-appengine] GQL simple problem

2009-12-27 Thread Jonathan
! Jonathan -- 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+unsubscr...@googlegroups.com. For more options

[appengine-java] Re: new in 1.2.8: relationship fields of type parent class that isn't even persisted. This is not yet supported.

2009-12-11 Thread Jonathan 'J5' Cook
Thanks for the fix, Max and perfect timing for me :) I just upgraded to 1.2.8 and started having this issue last night. For those who don't/didn't already know (like myself), here is a link to instructions Max wrote on how to install a new plugin version into the SDK:

[google-appengine] Re: Admin dashboard chart shows only last 18 hours instead of 24

2009-11-18 Thread Jonathan
fixed for me On Nov 18, 12:53 pm, Ikai L (Google) ika...@google.com wrote: This issue has been resolved. Can those of you that have been affected please check your dashboards? On Tue, Nov 10, 2009 at 10:27 PM, Prashant antsh...@gmail.com wrote: check my app also - *gaewcmsdemo*

[google-appengine] Re: Limit on image size very low

2009-11-17 Thread Jonathan
Or not. On Nov 18, 6:11 am, Barry Hunter barrybhun...@googlemail.com wrote: Has everyone here actully stared the issue tracker request? http://code.google.com/p/googleappengine/issues/detail?id=1422 thats far more likly to be taken notice of. -- You received this message because you are

[google-appengine] Re: Admin dashboard chart shows only last 18 hours instead of 24

2009-11-10 Thread Jonathan
igloohq On Nov 11, 12:50 pm, Ikai L (Google) ika...@google.com wrote: We're looking at the issue with 18 hour display. Those of you that have datastore stats that are not updating - can you provide your app ids? On Sun, Nov 8, 2009 at 3:13 PM, lem...@gmail.com lem...@gmail.com wrote: My

[google-appengine] After the scheduled maintenance, can no longer deploy app

2009-11-03 Thread Jonathan
When running appcfg.py update ., it times out Checking if new version is ready to serve. I am trying to deploy a new version of my app. I also cannot delete this aborted version from the admin panel. 2009-11-04 15:23:59,646 WARNING appcfg.py:1314 Version still not ready to serve, aborting.

[google-appengine] Big tracker

2009-10-14 Thread Jonathan
Can someone from Google please confirm the appropriate method to log a defect. It seems that the only method that works is to: - Write a message to this group and hope that someone from google sees it and takes an interest - They will recommend writing a bug report - You then write a bug

[google-appengine] Re: AttributeError: 'Key' object has no attribute '_str'

2009-10-13 Thread jonathan
I would have to imagine, that Google intends to have a reliable service here and that the release of 1.2.6 has been problematic. I would like to push for a review of this release once it is finished. There have been many problems caused to applications, that as you say is completely unexpected

[google-appengine] Re: Huge spike in load chart followed by flatline?

2009-10-07 Thread jonathan
I am not sure that it is without side effects though. I am getting the following in my console now: High Cpu Http Requests 99% 9095269647454015488 of 9223372036854775808 This resource is currently experiencing a short- term quota limit. Erratic App Behavior 17 0% 0 of

[google-appengine] Re: missing logs

2009-10-05 Thread jonathan
I have been using a lockless memcache queue for something similar. It is only for data that it is ok if you lose some of it. But it scales quite well. The implementation here is a little out of date: http://www.redredred.com.au/memcache-lockless-queue-implementation/. I plan to update with my

[google-appengine] Re: billing bug

2009-09-29 Thread jonathan
), but the way that it shows in the billing view makes no sense to me. j On Sep 30, 4:08 am, Jeff S (Google) j...@google.com wrote: Hi Jonathan, Could you send me your app ID? We're looking into this but it seems like this is the expected behavior. The denied emails are listed as billable

[google-appengine] billing bug

2009-09-28 Thread Jonathan
is that it says that it sent 7399 emails, when it actually only sent 2000, the rest hit a quota-exceeded exception. The third thing that is strange, is that the actual charged amount seems to have taken these details into account, and is not charging me anything... jonathan

[google-appengine] Re: Google App Engine Program Policies

2009-09-24 Thread jonathan
great! On Sep 24, 8:48 pm, Nick Johnson (Google) nick.john...@google.com wrote: Hi, We're pleased to announce that in response to the concerns some of you raised, we've taken another look at this section of the Terms of Service, and removed the section in question. It was never our

[google-appengine] Re: How to Configure Cache Duration?

2009-07-28 Thread jonathan
my resource expiry does work. In my app.yaml it looks like: - url: /media static_dir: media/ expiration: '100d' The main differences to yours which you might want to try are: the trailing slash on the static_dir, and a simpler expiration directive. On Jul 28, 7:40 pm, Rizky

[google-appengine] Re: help with cron...

2009-07-28 Thread jonathan
I think you should probably look in your error log to see the error that occurred. On Jul 28, 12:02 pm, killingmichael killingmich...@gmail.com wrote: Hi All, I'm worried this is really silly, but I haven't been able to solve or google for an answer so I have to ask :) All my cron jobs

[google-appengine] Re: SMS Verfication Troubles

2009-07-27 Thread Jonathan Mayhak
I think that I'm having the same problem. When I try to create a new application I'm told to enter my cell number for verification purposes. The verification fails because, apparently, my number is already in use. Could you activate my account as well? I'm going to fill out this form as well:

[google-appengine] How does cron work with multiple deployed versions (one is default)

2009-07-22 Thread Jonathan
I want to know how cron jobs work across multiple deployed versions. Do cron jobs run from each version? or do cron jobs only run in the default version? Or does it do something where they only run if they are different the default version? Ideally, only cron jobs in the default version should

[google-appengine] Using the task queue for sending emails

2009-07-15 Thread Jonathan
The canonical example given for using the task queue is to send emails. How does this work with the restrictions around only being able to send emails on behalf of a logged in user? I am starting to butt up against these email restrictions. I want to be able to send automated emails occasionally

[google-appengine] copying datastore from production application to staging application

2009-07-11 Thread Jonathan
I have created a feature request to be able to copy the datastore from one application to another application. This would be used for testing migration from the current production version to a new version of the data schema. Whilst testing of this migration is possible without using real data,

[google-appengine] Re: memcache architecture

2009-07-07 Thread jonathan
often I need to run it before the writes would be evicted. jonathan On Jul 1, 12:32 am, hawkett hawk...@gmail.com wrote: Hi,    I'm wondering what thememcachearchitecture is - is it a) single instance with a massive pool of memory for everyone, or b) many instances that are each shared

[google-appengine] Re: Datastore outage July 2, 2009

2009-07-02 Thread jonathan
normally This doesn't seem to match what was expected by Google. Can anyone tell me what was going on? Jonathan On Jul 3, 8:58 am, Jeff S (Google) j...@google.com wrote: Thank you for the feedback Jerason. I hear you and we are working to prevent situations like this from arising again. We plan

[google-appengine] Re: download_data: How do we deal with blobs?

2009-06-23 Thread Jonathan Feinberg
It's not clear what you're asking. On the way out of what? On the way out of App Engine. :) Is there a preferred correct way to encode blobs in an exporter? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google

  1   2   >