[google-appengine] Re: Can a single App Engine Standard Java 11/17 web process handle multiple concurrent requests?

2022-08-03 Thread William Linna
Thanks for the people who responded. It seems that the documentation has been fixed, and no longer states that each web server processes only one request at a time etc. I no longer need help with this issue tiistai 2. elokuuta 2022 klo 23.25.00 UTC+3 concep...@google.com kirjoitti: > YAML conf

[google-appengine] Can a single App Engine Standard Java 11/17 web process handle multiple concurrent requests?

2022-07-28 Thread William Linna
Hello, I'm using App Engine Standard with Java 11. My app is packaged as a JAR and it doesn't use legacy bundled services. I have set manual scaling to 1. Now my question is can that one instance handle multiple concurrent requests? According to the documentation, it seems like it cannot. http

[google-appengine] Not Found The requested URL was not found on this server ---

2019-12-20 Thread William Blair
has anybody else had this happen to them and or know how to fix it. Everytime I click on a link or go to a page it says "Not Found The requested URL was not found on this server." I've . made 4 different instances and it's happened on every one. I put up a video at https://drive.google.com/dri

Re: [google-appengine] Re: 404 error

2018-12-27 Thread William Taylor
rge (Cloud Platform Support)' via Google App Engine wrote: > Hello William, > > Error 404 notFound indicates that either there is no API method associated > with the URL path of the request, or the request refers to one or more > resources that were not found. > > You need

[google-appengine] 404 error

2018-12-27 Thread William Taylor
Error: Not FoundThe requested URL / was not found on this server. 404 error I don't know how to begin dealing with this error. I am trying to view a static website and it works fine on my machine, Windows 10. My app. yaml file is: runtime: python27 api_version: 1 threadsafe: true handlers: - u

[google-appengine] Re: The process handling this request unexpectedly died. (Error code 203)

2017-10-15 Thread William Au-Yeung
I also counter similar problem Environnement : GAE 1.5.58 Java 1.8 Mathieu Clavel於 2011年8月5日星期五 UTC+8下午4時36分25秒寫道: > > Hello everyones, > > I have an application developped in java on appengine. > Recently, I migrated my webservice calls from stub written from scratch to > stub generated form th

[google-appengine] Re: 500 error on first boot

2017-09-20 Thread William Shakour
Thanks for letting me know... I was not aware of the bug or the public issue tracker for that matter. So much appreciated on both counts. On Wednesday, 20 September 2017 14:37:36 UTC+1, Jordan (Cloud Platform Support) wrote: > > This is currently a known issue

[google-appengine] Re: 500 error on first boot

2017-09-16 Thread William Shakour
after that. William On Saturday, 16 September 2017 23:59:28 UTC+1, Kamran (Google Cloud Support) wrote: > > > Are you deploying a code from Google Cloud Tutorials or this is your own > code? I'd recommend visiting this thread > <https://groups.google.com/d/msg/googl

[google-appengine] Re: 500 error on first boot

2017-09-16 Thread William Shakour
after that. William On Saturday, 16 September 2017 23:59:28 UTC+1, Kamran (Google Cloud Support) wrote: > > > Are you deploying a code from Google Cloud Tutorials or this is your own > code? I'd recommend visiting this thread > <https://groups.google.com/d/msg/googl

[google-appengine] 500 error on first boot

2017-09-16 Thread William Shakour
I am using java8 std env on appengine and getting a 500 error when hitting a url for the first time: Error: Server ErrorThe server encountered an error and could not complete your request. Please try again in 30 seconds. as soon as I refresh the application comes to life with expected first t

[google-appengine] Re: Using a context not associated with a request

2017-05-09 Thread william
p.HandleFunc("/", HandlerBase) http.HandleFunc("/user", HandlerUser) http.HandleFunc("/event", HandlerEvent) appengine.Main() } All the files (main.go, bigquery.go (client creation, data streaming), handlers.go, etc.) are in the same folder. Le mardi 9 ma

[google-appengine] Re: Using a context not associated with a request

2017-05-09 Thread william
Hi George, Thanks for your reply. While waiting, I tried directly streaming the data to BigQuery instead of using PubSub so I created a client by following the link you gave me but I'm getting a similar error as when I create a PubSub client: panic: not an App Engine context goroutine 1 [runn

[google-appengine] Re: Using a context not associated with a request

2017-05-04 Thread william
Hi George, I'm not at my workplace right now (it's quite late in EU). I got this from this from the Cloud platform's console, does this help ? panic: not an App Engine context goroutine 1 [running]: panic(0x17db1c0, 0xc010526280) go/src/runtime/panic.go:481 +0x3e6 google.golang.org/appe

[google-appengine] Re: Using a context not associated with a request

2017-05-04 Thread william
Hello George, I have changed my version of Go to 1.6 but I'm still getting the same error for the same line: psClient, err := pubsub.NewClient(ctx, "myproject-645411") Another question related to this one, if I want to create a new BigQuery client, which function should I use to create an App

[google-appengine] Using a context not associated with a request

2017-05-03 Thread william
Hello, I was trying to deploy an API using PubSub with AppEngine but I got a "not an App Engine context" error, it's related to the following code: package main import ( "golang.org/x/net/context" "log" "cloud.google.com/go/pubsub" ) var ( ctx context.Context pubsubClient *pubsub.Client

[google-appengine] Re: Can't find import "google.golang.org/appengine"

2017-05-03 Thread william
It works fine with "goapp deploy", thanks! I have another error, but I'll open another question for that. Thanks again! Le mardi 2 mai 2017 21:29:24 UTC+2, George (Cloud Platform Support) a écrit : > > Hello William, > > Developers are aware of this issue and are ac

[google-appengine] Can't find import "google.golang.org/appengine"

2017-05-02 Thread william
Hello, I'm trying to deploy an API on AppEngine but I'm not sure why it's not working, here's an extract of the code: package main import ( "encoding/json" "io/ioutil" "net/http" "fmt" "google.golang.org/appengine" ) func main () { InitPubSub() http.HandleFunc(

[google-appengine] Can't find import "google.golang.org/appengine"

2017-05-02 Thread william
I'm trying to deploy an API on AppEngine but I'm not sure why it's not working, here's an extract of the code: package main import ( "encoding/json" "io/ioutil" "net/http" "fmt" "google.golang.org/appengine" ) func main () { InitPubSub() http.HandleFunc("/", Han

[google-appengine] Google Cloud Compute “gcutil” depricated

2015-07-08 Thread William Harvey
I'm new to Google Cloud Compute and I'm no developer or coder. But I've been following the information step by step guide. http://www.filiwiese.com/running-screaming-frog-on-google-cloud/ Unfortunately as of today "gcutil" has deprecated and I'm at a loss how to follow the instructions. I tr

[google-appengine] Help : Share Datastore of App Engine with another app engine project

2015-04-23 Thread Jorge William Rodrigues
Anyone know of any implementation or api own google app engine of integration the "datastore" of the projects Google App Engine? Not using Web Services! Is it possible to make this integration "datastore"? Is there any API -- You received this message because you are subscribed to the Google G

[google-appengine] ODBC for the Datastore?

2014-01-07 Thread William Astarita
Does anything like this exist? I want to connect to the data store from an MS Access application while I'm transitioning over from a desktop app to a web app I'm building. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe f

[google-appengine] 403 Forbidden

2013-11-06 Thread William Shakour
I am currently visiting one of the countries where app engine is not available, so I can understand why I cannot access the api console etc. but does anyone know of an explanation for why the sites hosted on app engine are not accessible? E.g. renjin.org, and all my web projects are all generat

[google-appengine] Re: Error: Unable to find property 'application' on class: com.google.apphosting.utils.confi g.IndexYamlReader$IndexYaml

2013-10-23 Thread William Taylor
I'm having the same issue. I tired to use sdk-1.8.6 and still have get the same error as reported here. On Friday, October 18, 2013 9:12:02 AM UTC-4, Sridhar Nalam wrote: > > I am trying to vacuum unused indexes from hosted app engine java > application. Before this i successfully deleted the u

[google-appengine] Is it possible to run tidy at google app engine PHP

2013-10-21 Thread William
It seems like google app engine php doesn't have tidy extension, my question is , is there any way to use tidy on google app engine php? Thanks, -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop recei

[google-appengine] gae + html5 + ajax + java

2013-06-19 Thread William Diaz Pabón
how I can connect a html5 page with ajax with java class on gae? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.

Re: [google-appengine] Re: Data loss

2013-05-15 Thread William Diaz Pabón
I'm in the local development environment. I will check the information that you indicate. Thank you. 2013/5/14 Vinny P > Hello William, > > Are you deploying the application to AppEngine Production (for instance, > are you accessing it via appspot.com?) or are you lo

[google-appengine] Data loss

2013-05-13 Thread William Diaz Pabón
that data is not lost? -- Éxitos. Cordialmente, *William Diaz Pabón**, Especialista en Soluciones Informáticas ** * Bogotá, Colombia Tel: +57 (300) 3917774 http://planetapleno.blogspot.com/ http://tutorialestecnicos.blogspot.com/ -- You received this message because you are subscribed t

[google-appengine] GAE with EJB3 tutorials

2013-04-24 Thread William Diaz Pabón
Where do I can get tutorials on how to make a crud using GAE and EJB3? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegr

Re: [google-appengine] Maven and GAE endpoints

2013-03-18 Thread William Ferguson
t jar using the Maven plugin that includes the client's dependencies. Anyone else using Maven and end-points and have some details on their usage or progress? William On Tuesday, March 19, 2013 4:12:53 AM UTC+10, Ludovic Champenois wrote: > > On 3/16/13 10:09 PM, William Ferguson

[google-appengine] Maven and GAE endpoints

2013-03-17 Thread William Ferguson
pport the endpoint tooling) maven-endpoint-plugin generates the server api descriptor but not any of the client classes. William -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop recei

[google-appengine] Re: datastore admin not working?

2012-09-17 Thread William H. Strathearn
I am now. I'm not quite sure how long 'momentarily' is supposed to be. I've been trying about 30 minutes. On Friday, September 14, 2012 9:36:55 AM UTC-7, sebastián serrano wrote: > > Hi, > Is anybody else also getting: "Datastore Admin is loading and will be > ready momentarily." accesing the

[google-appengine] retrieve all docs from documents api

2012-01-30 Thread paul william ford
to all, I've written the following code below. Currently, it only retrieves about 100 documents and there are easily a 1000+. Any thoughts on what I may be doing incorrectly? Thanks --- GoogleOAuthParameters oauthParameters = new GoogleOAuthParameters(); oauthParameters.setOAuthConsumerKey(

[google-appengine] Credentials bug in Windows 7 64bit

2011-06-13 Thread William Parry
Hi, I recently moved from OS X to Windows 7 64bit and subsequently so did my App Engine environment. There appears to be a bug where I have to type in my credentials each time I wish to deploy. In the OS X version this is saved. Thanks, William -- You received this message because you are

Re: [google-appengine] Websocket support on AppEngine?

2009-12-22 Thread William Heath
App engine cannot persist a connection so don't think so. -Tim On Tue, Dec 22, 2009 at 3:43 PM, Devraj Mukherjee wrote: > Hi all, > > Are there any indications of when AppEngine server might support > Websockets? Or does it already do so? > > Thanks. > > -- > "The secret impresses no-one, the t

Re: [google-appengine] Live update - Comet app in GAE

2009-12-21 Thread William Heath
GAE won't allow a permanent socket to be opened. Live updating therefore is not possible. The best you can do is poll with ajax. I am very sad about this limitation with GAE. -Tim On Mon, Dec 21, 2009 at 5:08 PM, Carlos Alberto Machado < carlosalberto...@gmail.com> wrote: > Hi, > > How can I

[google-appengine] Re: Flash and app engine

2009-11-03 Thread William Heath
Flash apps can be made to invoke ajax requests which gae supports. If you want rtmp your sol as gae does not persist socket connections. You might be able to get around it by allowing a trusted server that does support rtmp but that is the best you can do. -Tim On Tue, Nov 3, 2009 at 12:37 AM,

[google-appengine] Re: Significant performance degredation over the last week

2009-11-02 Thread William Montgomery
Also for a static page such as about, does it not make sense to cache the rendered template in Memcache, to save the processing? Will. 2009/11/2 Jason C > > We have a webapp application that occasionally gets > DeadlineExceededErrors on cold start (i.e., >30s!). This is a regular > occurrence o

[google-appengine] Re: User Authentication Question

2009-10-27 Thread William Montgomery
2009/10/27 mscwd01 > > I am creating an app which requires user authentication so that each > person can login to their own "private" area. The default Users > service should suit my needs; however I have a quick question to > ensure I have understood how it works correctly. > > To check whether

[google-appengine] Re: How i restart the database

2009-10-27 Thread William Montgomery
HI, I think you want to clear your datastore? You can run the dev_appserver with the flag --clear_datastore If you have this process automated using eclipse you may have to look at your run configurations to change this. Hope this helps, Will. 2009/10/26 Murdoc Maia > > Hello, > > I need to re

[google-appengine] Re: Datastore property type bug?

2009-10-19 Thread William Montgomery
Have you tried vacuuming your indexes and updating them again, it could just be that the index isn't in place to support the String queries yet? Will. 2009/10/19 tamakun > > Can anyone tell me if they've run into a similar problem to the > following? > > I had an entity with a TextProperty orig

[google-appengine] Re: Bulk Deleting Data - Data Viewer Moans

2009-10-17 Thread William Montgomery
er than faffing about trying to > delete the data? > > I am being charged only 10cents/day but I no longer need the > application. > > On Oct 17, 5:13 pm, William Montgomery > wrote: > > It might be best just to write a small script that deletes all your data, > I > &g

[google-appengine] Re: Bulk Deleting Data - Data Viewer Moans

2009-10-17 Thread William Montgomery
It might be best just to write a small script that deletes all your data, I think you are restricted to operating on 1000 entities at a time even for deletes so it would have to be something like. keys = Kind.all(keys_only=True).fetch(1000) while keys: db.delete(keys) keys = Kind.all(keys_only=

[google-appengine] Re: how to convince client

2009-10-16 Thread William Montgomery
Well there is obviously Amazon EC2 service, which is perhaps the most popular cloud computing platform. Will. 2009/10/16 Adligo > > Hi, > > I would look into trying to convince your client of cloud computing > first and GAE second. Once you convince them to use cloud computing > for their ho

[google-appengine] Re: workaround for iterating through more than 1000 rows query in datastore

2009-10-13 Thread William Montgomery
Hey Jon, This is a pretty common requirement/question, the standard way is to page out the entities you need in blocks of 1000. This is done by fetching 1000 and keeping a 'bookmark' entity (which is the last entity fetched). Then modifying to fetch the next 1000 entities with a key larger than the

[google-appengine] Re: delete (rename) an application

2009-09-28 Thread william
Hi, I don't delete the application id, but I wish to delete older version of a specific version. How do I do that? It seems like: I keep the version the same after making changes and deploy again, the myapp.appspot.com does not change behavior. What does that mean? The same version has two physic

[google-appengine] "view source" equivalent for GAE

2009-07-10 Thread William Vambenepe
One of the main reason why the WWW grew so fast is how easy it is (or at least was, back when HTML was actually human-readable) to do "view source". I think it would help a lot if there was such an option for GAE apps. At the discretion of the app owner of course (unlike HTML). As a programmer I

[google-appengine] Cron and app versions

2009-04-13 Thread William Shallum
n the latest version) are still displayed. The cron job itself is marked as "failed" while a manual GET using a browser to the versioned address does not result in an error. The cron requests show up as 404 errors in the request logs of the default version. Bug?

[google-appengine] JVMTI Support

2009-04-08 Thread William Louth
monthly phone bill without any itemized list of individual or aggregated charge analysis. When will this important management and diagnostics support be made available? William --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[google-appengine] Getting URLFetchServiceError values from DownloadError?

2009-04-01 Thread William Shallum
e property which is a string? Thanks, William --~--~-~--~~~---~--~~ 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 f

[google-appengine] Re: Can't access my application

2009-03-21 Thread William
I'm also getting this message on my app now. )-: On Mar 21, 5:14 am, Brandon Thomson wrote: > When I try to access my application I get the following message: > >     We're sorry... > >     ... but your query looks similar to automated requests from a > computer virus or spyware application. To

[google-appengine] my GAE domain is being redirected to an empty Google Sites homepage...

2009-03-21 Thread William
atly appreciated. Thanks! William --~--~-~--~~~---~--~~ 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 th