Re: [google-appengine] /_ah/bounce - What is it and what can I do about it?

2013-01-12 Thread James Gilliam
to be parsable with > a mail api like James. I have not heard of this feature before but I do see > bug reports about bounces being misrepresented in the docs. Hopefully, The > Google will elaborate. > > On Sat, Jan 12, 2013 at 9:25 AM, John Wheeler > > > wrote: &

[google-appengine] trying to make datastore updates faster

2013-02-07 Thread James Gilliam
I am running a task which updates a bunch of records, and find I only get about 20-30 records updated a minute which seems slow to me. The entity is modestly sized. There is very little pre processing of the records being updated. Using python 2.7 thread safe. I have no hard data but this is

[google-appengine] Re: Datastore Viewer crashing again!

2013-02-10 Thread James Gilliam
Noticed some weird behavior with the datastore viewer. When using namespaces, and entering a query, the page reloads with the namespace field is empty. Pretty much unusable for me. Also, I don't trust their mass deletion in datastore admin console of kinds -- is generally hangs with tasks sta

[google-appengine] Re: Write Op Counts & Indices

2013-02-20 Thread James Gilliam
It is all in the documentation but here is the main thing you need to know -- when you create an entity the default for a attribute is to index it ... you have to say don't do that. This means there will be a TON of index writes, two per attribute, for an entity even if there are no compound i

[google-appengine] Re: Write Op Counts & Indices

2013-02-20 Thread James Gilliam
For example -- tokenvalue = db.StringProperty( default = '', indexed = False ) On Wednesday, February 20, 2013 11:11:23 AM UTC-8, James Gilliam wrote: > > It is all in the documentation but here is the main thing you need to know > -- when you create an entity the default fo

[google-appengine] Re: Counting Datastore Writes & Indices

2013-02-20 Thread James Gilliam
tokenvalue = db.StringProperty( default = '', indexed = False ) On Tuesday, February 19, 2013 5:07:32 PM UTC-8, Scott Hunter wrote: > > How is it possible that, with 300 Datastore Put Ops & 0 Datastore Delete > Ops I have managed to accumulate over 15,000 Datastore Index Write ops? I > have 3 i

[google-appengine] What determines when the memcache cache is totally flushed and the stats are zero

2013-02-20 Thread James Gilliam
Sometimes the memcache stays active for many days. Then, all of a sudden it all disappears and the stats are reset. Would love to know what causes this to happen. Anybody know? Thanks -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] how do you get a serving url for google cloud storage (gcs) object

2015-08-23 Thread James Gilliam
been googling and reading docs trying to find this out without luck. i have created a gcs object and want to get a url for serving it (get_serving_url) how do you do this? also, is there a way to get a blobinfo for the gcs object ? thanks -- You received this message because you are subscri

[google-appengine] billing -- merging credits from multiple different accounts

2015-08-26 Thread James Gilliam
I have several billing accounts that have credits in them. This was from the time when different appids could not share the same billing account. I would now like to move the credits to the one billing account. Is there a way to do this or a number to call about this? Thank you -- You receiv

[google-appengine] oauth2 with cloud contacts api

2015-08-26 Thread James Gilliam
After authorizing contacts api in appid, I was trying to use the contacts sample code. Turns out it is no longer valid since it is using a depreciated interface which has been replaced by oauth2. I am looking for sample python code to demonstrate how to use oauth2 with the contacts api. Can

[google-appengine] oauth2 exchange code for token

2015-08-28 Thread James Gilliam
does anybody know how to pass a user specified parameter in step1 of the oauth2 scenario that can be retrieved when receiving the code in step2? so one can relate the step1 authorization with step2. -- You received this message because you are subscribed to the Google Groups "Google App Engin

[google-appengine] Re: oauth2 exchange code for token

2015-08-28 Thread James Gilliam
it is state -- try finding that in the oauth2 documentation On Friday, August 28, 2015 at 4:41:39 PM UTC-7, James Gilliam wrote: > > does anybody know how to pass a user specified parameter in step1 of the > oauth2 scenario that can be retrieved when receiving the code in step2? so

[google-appengine] Re: oauth2 exchange code for token

2015-08-28 Thread James Gilliam
look at documentation page https://developers.google.com/identity/protocols/OAuth2WebServer search for the word 'state' On Friday, August 28, 2015 at 4:41:39 PM UTC-7, James Gilliam wrote: > > does anybody know how to pass a user specified parameter in step1 of the > oauth

[google-appengine] what is the gae api to retrieve the project number

2015-08-30 Thread James Gilliam
been googling for how to obtain the project number via a gae api and cannot find it the number is located on the dashboard but i wanted to get it programmatically thanks -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe fr

[google-appengine] AppEngine with Endpoints

2016-06-09 Thread Andrew James
>From the tutorials I have seen, you can package html/css within an Endpoints app, effectively creating a dynamic web app. Is this good practise, or is the recommended approach to create a separate app (containing the front-end code) and host it in app engine? -- You received this message beca

[google-appengine] max size for queue add

2014-03-06 Thread James Gilliam
in the docs, I cannot locate a maximum size of data in a push queue add request but it appears to be around 100k bytes does anybody know what the maximum is and if it is just 100k, why not at least a meg ? thanks -- You received this message because you are subscribed to the Google Groups "G

Re: [google-appengine] Re: Custom domain going to Google on some networks

2014-03-11 Thread James Broberg
same here. not using cloudflare at all. On 12 March 2014 08:01, Rodrigo Almeida wrote: > Same issue here. We are located in Brazil and our DNS records managed by > cloudflare. > > > On Tuesday, March 11, 2014 5:48:43 PM UTC-3, GregF wrote: >> >> We have several custom domains (e.g. www.schoolin

Re: [google-appengine] Re: Custom domain going to Google on some networks

2014-03-11 Thread James Broberg
Thanks, I also filed a critical issue on our enterprise support (for whatever that is worth...) On 12 March 2014 08:07, GregF wrote: > I've created a production issue here: > https://code.google.com/p/googleappengine/issues/detail?id=10687 - please > star! > > > On Wednesday, 12 March 2014 09:4

[google-appengine] Re: Custom domains stopped to work

2014-03-11 Thread James Foster
I was seeing that the the custom domain (eg. www.domain.com) was being 302 redirected to google.com, and any more specific URLs (eg. www.domain.com/product) were producing the "that's all we know" Google 404 error. Resolved within about 5 minutes of me noticing it. Has Google announced anything

[google-appengine] Re: Custom domain going to Google on some networks

2014-03-11 Thread James Foster
Looks like they might've set the security flag on that issue. I hope we get a proper postmortem. On Wednesday, March 12, 2014 8:07:32 AM UTC+11, GregF wrote: > > I've created a production issue here: > https://code.google.com/p/googleappengine/issues/detail?id=10687 - please > star! > > > On We

[google-appengine] Re: Custom domain going to Google on some networks

2014-03-11 Thread James Foster
Seems very quiet on Google's end at the moment. Haven't heard a peep despite reaching out to Google Cloud Platform on Twitter and Google+. Have they been active on the issue you filed? Is anyone having trouble with SSL at the moment? I'm seeing some issues, but not sure whether it's related to

[google-appengine] checking if datastore key exists for one small operation only

2014-03-13 Thread James Gilliam
i thought there was a way to see if a database key exists for the price of one small operation? doing keyobj = Key.from_path, followed by filter( '__key__ =', keyobj ), followed by query.get() using key only query, you are charged one large and one small operation and only get the key returned.

[google-appengine] Re: Custom domains stopped to work

2014-03-13 Thread James Foster
FYI, I've put in a feature request for Custom Domains to be shown on the System Status page: https://code.google.com/p/googleappengine/issues/detail?id=10699 On Wednesday, March 12, 2014 7:40:24 AM UTC+11, Tomas Adamek wrote: > > Hi there > > it seems like that today all my custom domain configur

[google-appengine] Re: Custom domain going to Google on some networks

2014-03-13 Thread James Foster
FYI, I've put in a feature request for Custom Domains to be shown on the System Status page: https://code.google.com/p/googleappengine/issues/detail?id=10699 On Wednesday, March 12, 2014 12:20:46 PM UTC+11, GregF wrote: > > The problem was resolved for us about 12:30 NZ time. We had about 4 hour

[google-appengine] Re: Processing payments using Paypal, python SDK

2014-03-18 Thread james maringa
How did you add the sdk to the app engine project? It's been giving me trouble On Friday, January 3, 2014 12:52:23 AM UTC+3, Robert Avram wrote: > > I'm trying to figure out how to process payments using paypal python sdk > and google app engine. > the following code seems to work, but I can't f

Re: [google-appengine] Re: New Pricing

2014-03-25 Thread James Foster
That's not the case. I have an app that is regularly sending to >100 recipients/day. I had never requested that any cap be lifted. Even in the dashboard of any paid app you can see that there currently isn't a cap in the "Recipients Emailed" column. ("$0.01/ 100 Recipients") On Wednesday, March

Re: [google-appengine] Re: Server Error ("Text Search") on Admin Console

2014-04-02 Thread James Courtney
I'm seeing this error now (22 months later). I suspect the cause must be different but I can't browse or search any of our text indexes through admin console (app behavior seems unaffected). In short, the symptoms seem identical to that posted initially for this thread. On Tuesday, May 29, 20

Re: [google-appengine] Server Error ("Text Search") on Admin Console

2014-04-03 Thread JAMES COURTNEY
realized I probably should have created a post on stack overflow which I did here: http://stackoverflow.com/questions/22797685/a-server-error-has-occurred-on-text-search-in-admin-console Best, Jamey James Courtney Co-Founder, CFO, Code Monkey, etc. PhilanthroPal, Inc. Office: (650) 300-1652 Mo

[google-appengine] Re: Google Apps No Longer Free

2014-04-06 Thread James Gilliam
When I didn't think there could be any more issues with google apps account, I have found another one. Used an alias for a custom domain for a client and now the client wants his own google apps account. I deleted the alias but I cannot create the new google apps account. Anybody know how long

Re: [google-appengine] Server Error ("Text Search") on Admin Console

2014-04-07 Thread JAMES COURTNEY
or is occurring upon attempt to display specific documents/results as you seem to suspect. I've filed the production issue too. Thanks for your continued help with this. Best, Jamey James Courtney Co-Founder, CFO, Code Monkey, etc. PhilanthroPal, Inc. Office: (650) 300-1652 Mobile: (650)

Re: [google-appengine] Server Error ("Text Search") on Admin Console

2014-04-08 Thread JAMES COURTNEY
Many thanks Vinny. It's frustrating because I can't see the data to see what might be iffy. It isn't an emergency though so I'll give Google a few days to sort it out. Best, Jamey James Courtney Co-Founder, CFO, Code Monkey, etc. PhilanthroPal, Inc. Office: (650) 300-16

[google-appengine] Re: "Recipients Emailed" count very large

2014-04-23 Thread James Foster
Mine looks normal. On Thursday, April 24, 2014 8:15:50 AM UTC+10, Rik wrote: > > The quota table on my app's dashboard page is indicating that today my app > sent over 10,000 emails using the GAE mail API-- that's more than 1,000x > what it usually sends in a day. > > Looking at analytics events

[google-appengine] Re: too many appengine frontend instances

2014-05-08 Thread James Foster
I'm seeing the same thing. Between 10x and 30x the regular number of instances, even though the number of requests is the same as usual. Perhaps a problem with v1.9.5? Status page seems to be showing everything but datastore as normal, though. https://code.google.com/status/appengine If anyone

[google-appengine] Re: App Engine 1.9.4 Released

2014-05-08 Thread James Foster
Hey Eric, I just wanted to say thank you for posting this. I've noticed that new versions tend to get rolled out without announcements sometimes. Even for small releases, it is great to hear about the changes and know when they happened. James On Friday, May 2, 2014 7:06:31 AM UTC+10,

[google-appengine] gae billing vs. cloud billing

2014-06-06 Thread James Gilliam
For new appid's we are required to use cloud billing and old appids are using gae billing -- confusing? yes Will the old billing be moved to cloud billing or is this something we can do to make this happen? Also, what happens if an appid has both gae billing and cloud billing for other cloud

[google-appengine] Re: Google Channel API /_ah/channel/connected/ not called while /_ah/channel/disconnected/ is

2014-06-17 Thread James Mortensen
;re reusing the same channelId so that any messages sent while offline still get delivered. Is this not the correct course of action? There's also a Stack Overflow post from two years ago on this issue: http://stackoverflow.com/q/10741519/552792 Thank you, James On Thursday, May 24, 2

[google-appengine] access resouce usage in real time

2014-06-20 Thread James Gilliam
Is there a way to access usage in real time. The kind of stuff in the dashboard and/or quota use. For example, I want to see how many writes my appid has done. Thanks -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from th

[google-appengine] datastore statistics -- mystery size

2014-06-21 Thread James Gilliam
I have an appid that has two namespaces and the empty namespace -- the empty namespace is not being used by me. According to datastore statistics, the empty namespace has over a third of the space with no entities. The other two namespaces seem to be correct. How can the empty namespace be usi

[google-appengine] cloud gae bank account billing stays pending

2014-08-01 Thread James Gilliam
A credit card is being used for billing for a cloud account. I added a bank account to the account and it has been PENDING for a couple of weeks. The small credit never hit my account and I have no way to verify the bank account. It doesn't give me an option to resubmit without cancelling the

[google-appengine] The pitfalls of building services using Google App Engine

2014-08-04 Thread James Foster
I came across this article today: http://techtraits.com/system%20admin/2013/02/24/The-problems-of-working-in-App-engine/ I'm considering undertaking my second project in App Engine (larger than the first), but am a bit worried about some of the pitfalls in the article. Does anyone know if any of

[google-appengine] Re: url.fetch DNS cache (IP server changes)

2014-09-18 Thread Wanderi James
my application fetches https://api.kazang.net/apimanager/api_v2/ but i get this error DNSLookupFailedError: DNS lookup failed for URL: https://api.kazang.net/apimanager/api_v2/ Can you refresh your cache On Thursday, 4 December 2008 18:06:01 UTC+3, Sylvain wrote: > > Hi, > > My application fetc

[google-appengine] Google URLFETCH DNS CACHE

2014-09-18 Thread Wanderi James
How long does this get refreshed. Can someone refresh it, am loosing money DNSLookupFailedError on api.kazang.net -- 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

[google-appengine] Default bucket is not being set up, unable to create storage buckets that I can access through php

2014-10-02 Thread James Nadeau
I created an issue https://code.google.com/p/googleappengine/issues/detail?id=11332 but I was hoping someone here could help me I can't seem to get a storage bucket to work with php. I'm running the following code: https://github.com/jamesjnadeau/gae-storage-test-hardcoded-2 here: http://a

[google-appengine] converting to appcfg update with oauth

2015-05-20 Thread James Gilliam
I am trying to convert to oauth when i update gae code via command line appcfg. I am finding that the token which is given (via https link provided during update) is only valid for one use. i routinely do an update and set_default_version and have to get the token multiple times. Is there a

[google-appengine] 400 Error when trying to deploy the Node.js helloworld app to appengine

2015-05-22 Thread James Mortensen
[400]: Bad Request Unexpected HTTP status 400 Jamess-MacBook-Pro-3:1-hello-world jem$ Anyone know what the problem is? Thanks, James -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop r

[google-appengine] Re: 400 Error when trying to deploy the Node.js helloworld app to appengine

2015-05-26 Thread James Hutton
01 Jan 1990 00:00:00 GMT', 'server': 'Google Frontend', 'cache-control': 'no-cache', 'date': 'Tue, 26 May 2015 14:49:35 GMT', 'content-type': 'text/plain'} DEBUG: (gcloud.preview.app.deploy) Server responded with

[google-appengine] Re: 400 Error when trying to deploy the Node.js helloworld app to appengine

2015-05-26 Thread James Hutton
I think it is the EU Data Center. But I can't remember for sure. How can I find out? On Tuesday, 26 May 2015 16:18:15 UTC+1, Ryan (Cloud Platform Support) wrote: > > Where is the instance located? > > On Tuesday, May 26, 2015 at 10:57:29 AM UTC-4, James Hutton wrote: >>

[google-appengine] Re: 400 Error when trying to deploy the Node.js helloworld app to appengine

2015-05-26 Thread James Mortensen
I thought this stuff was supposed to be abstracted so we didn't see the underlying compute instance... as James Hutton mentioned, how can we find out? Thanks, James On Tue, May 26, 2015 at 8:48 PM, Ryan (Cloud Platform Support) < rbruy...@google.com> wrote: > Where is the in

[google-appengine] Re: 400 Error when trying to deploy the Node.js helloworld app to appengine

2015-05-26 Thread James Hutton
h=GCE_CPU> > and > see what zone. If you have not then I need you to confirm you are deploying > the Node.js and the command line you used to deploy it. > > On Tuesday, May 26, 2015 at 12:28:04 PM UTC-4, James Hutton wrote: >> >> I think it is the EU Data Center. But

[google-appengine] Re: 400 Error when trying to deploy the Node.js helloworld app to appengine

2015-05-27 Thread James Mortensen
I am an American, but I created my test project in India. Does that matter? One of my colleagues created one in the USA and he didn't have any problem. How do we get around this if this is indeed the issue? Thanks, James On Tuesday, May 26, 2015 at 11:22:28 PM UTC+5:30, Ryan (

[google-appengine] Re: 400 Error when trying to deploy the Node.js helloworld app to appengine

2015-05-27 Thread James Mortensen
inate any ethnocentrism on my part. James On Wednesday, May 27, 2015 at 2:56:00 PM UTC+5:30, James Mortensen wrote: > > I am an American, but I created my test project in India. Does that > matter? One of my colleagues created one in the USA and he didn't have any > problem.

[google-appengine] Google Analytics showing source/medium as appengine.google.com/referral for sessions using Google Sign-In

2015-07-15 Thread James Foster
I'm wondering whether anyone else is running into this and whether there is a workaround. My site sends users through Google login using users.create_login_url when they opt to sign in. At that point, Google Anal

[google-appengine] Re: Google Analytics showing source/medium as appengine.google.com/referral for sessions using Google Sign-In

2015-07-16 Thread James Foster
gine.google.com referral comes after the Adwords referral, any conversions (from Adwords or other source/medium combinations) are being attributed as appengine.google.com/referral in Google Analytics. On Friday, July 17, 2015 at 1:45:08 AM UTC+10, Patrice (Cloud Platform Support) wrote: > > H

[google-appengine] Re: Google Analytics showing source/medium as appengine.google.com/referral for sessions using Google Sign-In

2015-07-18 Thread James Foster
I don't have a Google Analytics Premium account. Is there any other way forward? On Saturday, July 18, 2015 at 4:23:22 AM UTC+10, Patrice (Cloud Platform Support) wrote: > > Hi James, > > Thank you for your clarification, it does highlight what your issue is. > > Do you

[google-appengine] Re: Google Analytics showing source/medium as appengine.google.com/referral for sessions using Google Sign-In

2015-07-24 Thread James Foster
n more pressing stuff like getting SSL to work with naked domains. I imagine there is some way that people are currently dealing with this. For example, I could potentially just add utm tags to my post-login destination url. I'm just wondering if there are better workarounds. Regards, James

[google-appengine] Re: New Flexible App Engine Beta Performs Redirects :(

2016-11-25 Thread James Chan
I got the same problem too :( On Friday, 18 November 2016 03:45:52 UTC+8, Mark Herhold wrote: > > I tried the new beta version of the flexible app engine and my application > redirects (307 Temporary Redirect) to appspot-preview.com from my domain > instead of serving up the requests from the do

[google-appengine] Re: Error When Deploying Java Appp to App Engine? Can not get the System Java Complier. Please use a JDK, not JRE?

2016-12-09 Thread James Mortensen
We should easily be able to confirm this by trying to run "javac -version" from the command prompt, right? If the command prompt finds the right JDK, then eclipse should too, or is that not a good sanity check? Thanks. James On Saturday, January 16, 2016 at 9:35:58 AM UTC+5:30, A

[google-appengine] Data recovery appspot

2017-05-02 Thread James Calfee
I need to recover an old app from appspot.com .. I attempted to migrate it in 2014 but it did not port the data store back-end only the UI ported. I really need the old blob-store data. Can someone please direct me in the right direction? Do you recall what this datastore upgrade was called?

[google-appengine] Re: Data recovery appspot

2017-06-19 Thread James Calfee
Hi, sorry for the delay. The data-store upgrade was shortly after: 7/1/2015 I have attached the email I received about the upgrade. I was able to upgrade my app's front-end, but for some reason I was not able to upgrade the data store. The data-store upgrade required an external tool (comm

[google-appengine] Re: Data recovery appspot

2017-06-20 Thread James Calfee
The project at the time was secure-gem .. I ported it to secure-gem2 but secure-gem2 does not have the backing data.. On Monday, June 19, 2017 at 6:18:15 PM UTC-5, James Calfee wrote: > > Hi, sorry for the delay. > > The data-store upgrade was shortly after: > > 7/1/2015 &

[google-appengine] Re: Stability of Java 8 on Standard Environment

2017-07-26 Thread James Baldassari
Christian, thanks for that interesting (and kind of scary) work-around ( https://gist.github.com/cmaan/7752e3c4fd0b1ba90a745cb6db232206). I was having the same problem but with the PubSub client rather than the Spanner client. By switching the thread factory I was able to avoid the NPE at ApiP

[google-appengine] Re: Stability of Java 8 on Standard Environment

2017-07-26 Thread James Baldassari
https://issuetracker.google.com/issues/64064706 Hopefully someone at Google sees one of those. On Wednesday, July 26, 2017 at 11:02:30 AM UTC-4, James Baldassari wrote: > > Christian, thanks for that interesting (and kind of scary) work-around ( > https://gist.github.com/cmaan/7752e3c4fd0b1ba90a745cb

[google-appengine] Re: Stability of Java 8 on Standard Environment

2017-07-27 Thread James Baldassari
quest thread. Then, pass those credentials to a new Publisher that is created inside a non-request thread, such as one created by a Java ExecutorService. This combination works but is not very efficient. On Wednesday, July 26, 2017 at 7:25:12 PM UTC-4, Kenworth (Google Cloud Platform) wrote: >

[google-appengine] Google API for Text to Speech

2018-01-09 Thread James Liu
I have searched on Google and Google Cloud Document for "Text to Speech" function. But I only found "Speech to Text". Is there any API I can use to implement my "Text to speech". Best Regards James -- You received this message because you are subscribed to

[google-appengine] PCI compliance

2018-02-05 Thread James Hunter
We are trying to get our Google App Engine application through PCI compliance. They PCI certifier has 2 questions about use of load balancers that I'm not able to answer. Could anyone help me with this? 1. Is the infrastructure behind the load balancer synchronized? 2. Can we confirm passing

Re: [google-appengine] Re: Issue with invalid SSL certificate

2018-02-27 Thread James Lumb
Hi Richard, any update herre? On Monday, January 22, 2018 at 4:48:53 PM UTC, Richard Cheesmar wrote: > > Kai, I'll look into this again soon as I get a moment, please bear with me > > On Mon, Jan 22, 2018 at 6:39 PM, 'Kai Wang' via Google App Engine < > google-a...@googlegroups.com > wrote: > >>

[google-appengine] Custom Domain much slower than $PROJECT_ID.appspot.com

2018-08-09 Thread James Kozianski
ey. Is it possible I've misconfigured something? My DNS is CNAMEd to ghs.googlehosted.com, but it seems to me that using custom domains for routing is simply really slow. Is there anything I can do to improve the latency here? Cheers, James -- You received this message because you are su

Re: [google-appengine] Custom Domain much slower than $PROJECT_ID.appspot.com

2018-08-10 Thread James Kozianski
Ah, yes, that does seem to be the case. That is unfortunate. Thanks for the link. On Fri, Aug 10, 2018 at 12:20 AM Ani Hatzis wrote: > Hi James, > > I believe you are affected by a known issue > <https://issuetracker.google.com/issues/64458939>. Last status was that > t

[google-appengine] Is GAE required for GCE usage?

2018-10-04 Thread James Graham
I use four GCE VMs with a variety of APIs and services, but every month I see charges for App Engine Flex usage even though the GAE dashboard shows 0 requests over the same timeframe. Is it possible to use GCE without GAE? I can't tell if GAE is serving a purpose or if it was created accidentall

[google-appengine] Google cloud AutoML Vision doubt

2018-10-16 Thread Manuel James
hello everyone, i will keep it simple because its a very generic question but i don't have any answer yet, the problem its that in my university a company set a little "Investigation group" and its related to aumented reality and we need a image identificaction prograrm so i read only that goog

[google-appengine] App Engine PHP 7.3

2019-01-07 Thread James Castillo
Does anyone know when Google might add a PHP 7.3 enviornment to App Engine? -- 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...@goo

[google-appengine] Re: App Engine PHP 7.3

2019-01-10 Thread James Castillo
I don't need any other reason than because that's what I want. If App Engine won't provide it then I won't use it. On Monday, January 7, 2019 at 11:20:41 AM UTC-5, George (Cloud Platform Support) wrote: > > Hello James, > > It is difficult to offer even an

[google-appengine] Google App Engine SSL Auto-Renewal

2019-04-24 Thread James Terry
Hi all, I'm am trying to set up SSL Renewal on my domain name in Google App Engine. In Settings > Custom Domains, I select my domain and then click on Enable Managed Security. It prompts me with the following: domain.com is currently using certificate '$(certificateName)'. This > certificate

[google-appengine] Future of dev_appserver.py - deprecated?

2019-06-13 Thread James Crowley
not mentioned in the docs for php72/Java 11 etc at all? Thanks! James -- 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...

[google-appengine] Re: Future of dev_appserver.py - deprecated?

2019-06-14 Thread James Crowley
2019 01:32:52 UTC+2, James Crowley wrote: > > > Am I right in inferring that dev_appserver.py is on the way to being > deprecated, given the later language versions are not supported? > > I've tripped up trying to use it in the php7 environment - it prompts me > to pro

[google-appengine] 2 second RPC call to same url according to StackDriver?

2019-07-30 Thread James Crowley
Hi - I'm trying to diagnose some significant performance issues when running PHP 7 in the standard AppEngine environment. I've enabled stackdriver tracing (we start the trace as the first step in our PHP app, in the entry point php file), and it seems to be showing the root URL doing an RPC ca

Re: [google-appengine] 2 second RPC call to same url according to StackDriver?

2019-07-30 Thread James Crowley
seconds per request. Thanks James On Tue, 30 Jul 2019 at 10:14, James Crowley wrote: > > Hi - I'm trying to diagnose some significant performance issues when > running PHP 7 in the standard AppEngine environment. > > I've enabled stackdriver tracing (we start the trace as th

Re: [google-appengine] 2 second RPC call to same url according to StackDriver?

2019-07-30 Thread James Crowley
I may have spoken too soon - turns out POST requests don't have this behaviour, and GET requests do. Anyone have any ideas what would cause this? On Tue, 30 Jul 2019 at 20:01, James Crowley wrote: > Can someone on the Google team pick this up? It turns out this is a crazy > non-obv

Re: [google-appengine] 2 second RPC call to same url according to StackDriver?

2019-07-30 Thread James Crowley
Thanks Elliott - I wasn't aware of that tracker. On Tue, 30 Jul 2019 at 21:10, 'Elliott (Cloud Platform Support)' via Google App Engine wrote: > Hello James, > > Please note that Google Groups are reserved for general Google Cloud > Platform-end product discussions a

[google-appengine] Secure Cloud Scheduler App Engine route with X-Cloudscheduler

2020-04-20 Thread James Watkinson
I've setup Cloud Scheduler to GET an App Engine route with no issues - but the documentation is lacking (in general), but mostly on how to secure it. It mentions "login: admin" in app.yaml, but I'm pretty sure that is deprecated in most new Standard Environments. I tested briefly the request an

[google-appengine] Re: Secure Cloud Scheduler App Engine route with X-Cloudscheduler

2020-04-24 Thread James Watkinson
Thanks Olu for testing, Could you provide the scenario in which the header was not presented? Can you also raise a ticket to get this fixed / added to all Cloud Scheduler requests? login: admin is not available in Python 3.7 App Engine environment App.yaml reference: https://cloud.google.co

[google-appengine] 2 reference to same model causing problem

2009-01-07 Thread james...@163.com
class webdir(db.model): name = db.StringProperty() class webcontain(db.model): dirA = db.ReferenceProperty(webdir) dirB = db.ReferenceProperty(webdir) When running, a duplex property error for model "webdir" will pop out. Basicly I blelive there is a bug in the db library when try to defin

[google-appengine] Re: Need to Import Namespace(Datastore) in Local

2011-11-25 Thread James X Nelson
There is a download all data option for apps, though you do have to mirror your java classes in python, which is a pain. A better option would be to port directly in appengine. This is easier if you know all the table names, but I will assume otherwise. public void transferNS(String nsFrom, S

Re: [google-appengine] Feature Request I Think....

2011-11-25 Thread James X Nelson
Hey Chris, A couple ideas about how to help us help you help us get better load balancing. If it were possible to define different classes of instances to target, perhaps we could use a request header? Either an X-AE-Expected-Latency or X-AE-Instance-Class; The former to let an auto-balancer k

[google-appengine] Re: Move data from one local app to another

2011-12-03 Thread James X Nelson
Have you tried copy-pasting the generated ds flat-file, /war/WEB-INF/appengine-generated/local_db.bin ? -- 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: Move data from one local app to another

2011-12-03 Thread James X Nelson
Ok, so I hex dumped my local file, and it has the app id all over the place. You may be able to try out the remote api between local installations, or you're going to need to grep/cat find/replace the app ids in a copy of your local ds If you don't like either of these options, write a servle

[google-appengine] Re: more than 12M operations in less than 10 hrs

2011-12-06 Thread James X Nelson
Appstats is what you are looking for. http://code.google.com/appengine/docs/python/tools/appstats.html http://code.google.com/appengine/docs/java/tools/appstats.html Also look at http://code.google.com/appengine/docs/billing.html You will see that different kinds of queries and operations use a

[google-appengine] Re: Communication Between 2 Google App Engine Apps

2011-12-07 Thread James X Nelson
Also, take a look at the remote api, as this is exactly what it is designed for: http://code.google.com/appengine/docs/java/tools/remoteapi.html On Dec 6, 11:02 pm, trupanka wrote: > Please check "Google App Engine Terms of Service", paragraph 4.3 > (athttp://code.google.com/appengine/terms.htm

[google-appengine] Re: Remote realtime FIFO implementation

2011-12-14 Thread James X Nelson
Do not rely on a frontend instance's RAM-cache. The instances do not share RAM and the only way you can directly address a particular instance is using a front-facing backend, as noted by Gerald. The trouble is, even if you could safely store all your ints in addressable RAM space, you are goi

Re: [google-appengine] Re: Feature Request I Think....

2011-12-19 Thread James X Nelson
I definitely, absolutely love the idea of having appengine internally route foo.com/api to api.foo.appspot.com. An under-the-covers targeting of different apps/versions is the only way I can think of to get ssl for the whole app without having to deal with how browsers handle the *.appspot.co

Re: [google-appengine] Re: Put_Async Use It

2012-01-31 Thread James X Nelson
Async everything will always save you instance hours. It doesn't matter if you are threadsafe or not, the async operations allow you to perform a ds / memcahce / url fetch in a background thread, which you can check on whenever you want. Async is extremely useful if you use it to perform "data

[google-appengine] can help me out..

2013-08-23 Thread James Ivan Pilapil
im trying to create a test about making a ranking web and im already done with the web but i dont know how to put the sites in place and count the number of visits/clicks the visitors do can anyone help me -- You received this message because you are subscribed to the Google Groups "Google App

[google-appengine] how to do it.

2013-08-23 Thread James Ivan Pilapil
can anyone help me with the website im making using slim3...im maing a ranking game system website and i already build my website but how can i add the games and rank them according to the number of visits/downloads?? -- You received this message because you are subscribed to the Google Groups

[google-appengine] can you upload an xml data file on to app engine datastore

2013-02-04 Thread James Brian Rowan
can you upload an xml data file on to app engine datastore? If so, How do you do it -- 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+unsub

[google-appengine] Re: send data from VM to laptop

2019-04-17 Thread &#x27;James ( Cloud Platform Support)' via Google App Engine
Hello Pengyuan, You can transfer files from a VM through a few different ways. You can transfer from the Google Cloud shell[1] by running the following command: gcloud compute scp :~/ ~/Documents/ Or you can SSH/RDP depending on the host VM OS and use the Download file option. These methods

<    1   2   3   4   5