[google-appengine] Re: php yii2 framework on google app engine

2018-02-24 Thread 'George (Cloud Platform Support)' via Google App Engine
This is a duplicate of posting "php yii2 on Google 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

[google-appengine] Re: Cron Job config takes a day to be effective

2018-02-24 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Justin, How did you update your cron configuration? One can redeploy the whole application, or only the cron configuration, for Java, with: ./appengine-java-sdk/bin/appcfg.sh -A your-app-id -V app-version update_cron [YOUR_APP_DIR] For details and other languages, you may read the

[google-appengine] Re: microservices with the edge server pattern on App Engine

2018-02-23 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Tamas, You may develop a front-end app that implements the micro-services architecture and implement back-end functionality through endpoints. To avoid exposing your endpoints directly, you may use your own domain, as documented on the "Serving Multiple APIs from a Domain" page

[google-appengine] Re: Google App Engine Deployment Err Debug - Error Response: [4] Timed out waiting for the app infrastructure to become healthy.

2018-02-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Alex, You have just opened issue 73583699 in the public issue tracker. That posting is richer in information and otherwise the issue tracker offers the advantage of easier follow-up, so I suggest we keep that posting active; all further developments will get reflected in that thread.

[google-appengine] Re: Nodejs Google App Engine Deploy Always Fails - Error Response: [4] Timed out waiting for the app infrastructure to become healthy.

2018-02-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Alex, This is a duplicate of your posting "Google App Engine Deployment Err Debug - Error Response: [4] Timed out waiting for the app infrastructure to become healthy.". You should follow developments on the other thread. It is more effective to concentrate efforts in one place. --

[google-appengine] Re: Architecture advice for Google Cloud Platform website solution

2018-02-17 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello John, You may consider following a detailed tutorial and sample application in Go, offered as "Creating a Guestbook Application " in the standard environment documentation. A great part of your

[google-appengine] Re: Picture tagging and uploading to Database

2018-02-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Henk, What you desire is certainly attainable. As in similar cases, there is more than one solution possible, so you have a wealth of choices at your disposal. To store your images you may use Datastore and Cloud Storage in conjunction, where the storage it meant to store the actual

Re: [google-appengine] Re: Over Quota Custom Message

2018-02-05 Thread 'George (Cloud Platform Support)' via Google App Engine
It is a lot of subjectivity involved here, in declaring a 503 error friendly or not: for the one who finds this information useful, the same string may well seem friendly. How would you formulate the 503 error friendlier? What extra information would you like to see included with this message?

[google-appengine] Re: Over Quota Custom Message

2018-02-04 Thread 'George (Cloud Platform Support)' via Google App Engine
If your app exceeds the free quota for a resource needed to initiate a request, such as the bandwidth quota or instance hours quota, users of the app will get a server error, such as a HTTP 503 error. For all other services, exceeding quota from a free app will generate a quota exception that

[google-appengine] Re: I've been getting app engine service disruption when connecting to cloud sql

2018-01-31 Thread 'George (Cloud Platform Support)' via Google App Engine
An ongoing outage may affect your instance. It is possible to check its status and progress to resolution on the "Google Cloud Status Dashboard" page . -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

[google-appengine] Re: GAE php5.5, high latency (slow website)

2018-01-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Latency depends on your app itself, and the way you set up your cloud environment. You should consider the following environment components and related parameters for tuning and optimization opportunities; you should try to: - Increase caching of frequently accessed shared data - Use Memcache

[google-appengine] Re: How to send notification from app engine to local application

2018-01-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Juan, You may choose to implement a topic, and have your daemon application subscribe to it. Google Cloud Pub/Sub provides reliable, many-to-many, asynchronous messaging between applications. Publisher applications can send messages to a *topic*,

Re: [google-appengine] Re: Unlimited topics in PubSub

2018-01-25 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Joshua, Your feature request in the issue tracker is getting attention and will be addressed shortly. -- 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

[google-appengine] Re: Long running process - how to provide progress?

2018-01-23 Thread 'George (Cloud Platform Support)' via Google App Engine
For security reasons, the connections types you mention are not supported. Still, you can get the logging information you need by connecting to the instance, as detailed in the "Writing Application Logs" online document

Re: [google-appengine] Re: Unlimited topics in PubSub

2018-01-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Joshua, You are right, a topic is meant to be used for a considerable amount of time, in any case not for just a one-time event with a bunch of messages. Are there any more specific requirements for this feature request? You are encourage to submit it through appropriate channels, namely

Re: [google-appengine] Re: Unlimited topics in PubSub

2018-01-19 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Joshua, You are encouraged to open a feature request of similar content in the issue tracker , so Developers may get a chance to have a thorough look and decide on eventual implementation. -- You received this message because you are subscribed to

[google-appengine] Re: Unable to deploy via appcfg or gcloud

2018-01-17 Thread 'George (Cloud Platform Support)' via Google App Engine
What messages do you receive when deploying with the --verbosity debug parameter? It looks as if you are notified by means of the same "code=13" issue as covered in this Google Groups thread or this Public Issue Tracker

[google-appengine] Re: App Engine doesn't read a file

2018-01-15 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Giancarlo, Did you deploy your app? Do you test it using the local server? You seem to try using the local system in the app engine standard environment, which is not possible. This group is meant for general questions and voicing of opinions. For coding-related issues you are at an

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

2018-01-15 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Richard, We do hope that fixing this issue won't take till next year. I'll keep an eye on developments and update the thread accordingly. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop

[google-appengine] Re: memcached client with sasl

2018-01-15 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Vick, The page your link points to recommends for PHP the use of the memcached extension. This extension is included in the PHP runtime. You only need to choose your configuration and set the configuration

[google-appengine] Re: Unlimited topics in PubSub

2018-01-15 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Joshua, How does your use-case look like, exactly, that requires creating and deleting topics at such a high rate? You seem to need delivering a large number of messages to each client. This can be accomplished without subscribing to a topic. You may consider a technology such as

[google-appengine] Re: Initializing Firebase Admin in App Engine standard Java

2018-01-12 Thread 'George (Cloud Platform Support)' via Google App Engine
You'll notice that the transitive dependency is gone as your exception should be gone. We'll examine the information received and come back to you shortly. Thank you for your patience! -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To

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

2018-01-12 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Richard, Upon closer examination, I have noticed that the main tracker issue, the one covering the situation you described, was in fact closed. I just re-opened this issue with adequate priority, as well as all other related ones, so Developers may now take a closer look and offer a

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

2018-01-11 Thread 'George (Cloud Platform Support)' via Google App Engine
There should be no doubt that this issue enjoys active attention from side of Developers. You name it an inconvenience, maybe Developers tend to think similarly. However, this issue is accepted as a real issue that needs to get solved. -- You received this message because you are subscribed

[google-appengine] Re: Initializing Firebase Admin in App Engine standard Java

2018-01-08 Thread 'George (Cloud Platform Support)' via Google App Engine
Have you checked if the dependency of Guava 19.0 is still there? The proposed code needs to be adapted to your particular situation. -- 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

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

2018-01-08 Thread 'George (Cloud Platform Support)' via Google App Engine
One should not readily assume that the issue is left lingering: in fact, people work on this issue, which, as you mention, is more of an inconvenience. The fact is that there are more stringent issues, and priorities are assigned accordingly. -- You received this message because you are

[google-appengine] Re: Initializing Firebase Admin in App Engine standard Java

2018-01-05 Thread 'George (Cloud Platform Support)' via Google App Engine
You are right about the two different versions of Guava that appear in the project class path. The Admin SDK imports Guava 20.0, and one of his dependencies (okhttp-eventsource) imports Guava 19.0. Basically, the transitive dependency on Guava 19.0 needs to be avoided. You can accomplish this

[google-appengine] Re: SSL certificate not showing up after successful mapping of custom domain on Google App Engine

2018-01-05 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Tanya, To facilitate the exchange of possibly private information and attract the attention of Developers to you issue, you are encouraged to open an issue in the public issue tracker . This issue should have the same content as your posting here, with

[google-appengine] Re: Developing PHP app for both App Engine and Tomcat

2018-01-05 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Octávio, You are right about the facilities offered by the App Engine. More detail may be gathered from the main reply to the "What is the difference between Google App Engine and Google Compute Engine?" question

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

2018-01-05 Thread 'George (Cloud Platform Support)' via Google App Engine
If the proposed solution works, it were helpful for many if you confirm here; it would help those in the same situation. -- 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,

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

2018-01-04 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Richard, This is a known issue, and Developers are working towards a fix. You can refer to the same issue in the public tracker ; further progress will get reflected in that thread, where a temporary workaround is proposed: "As a temporary

[google-appengine] Re: Initializing Firebase Admin in App Engine standard Java

2018-01-03 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Zeyad, Your "try" block seems to lack a line: ".setDatabaseUrl("https://.firebaseio.com/") ". For related details, you may read the "Initialize the SDK" sub-chapter of the "Add the Firebase Admin SDK to Your Server" online document . The

[google-appengine] Re: Weird New Delayed Deployments

2018-01-03 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Kaan, What is the exact text of the 404 error, as you received it? You have only copied more than one "Checking if updated app version is serving." message. What is the output of the gcloud info command? You are encouraged to run the deployment command with the --verbosity=debug

[google-appengine] Re: Grant permission to list enabled service API for account.

2017-12-28 Thread 'George (Cloud Platform Support)' via Google App Engine
The likely role is "roles/appengine.deployer". You may have a look at the "Understanding Roles" documentation page . The service account's default permissions do not allow the account to perform certain actions, such as deploying to App

[google-appengine] Re: Visual Studio, Google Cloud deployment

2017-12-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Exhaustive details on your compute engine virtual machine are needed. The instructions require an instance that has Windows Server 2016, Microsoft IIS, ASP.NET, and SQL Express pre-installed. What are the characteristics of the virtual machine you deployed? Is this instance running? Have you

[google-appengine] Re: app declares a dependency from configuration 'compile' to configuration 'android-endpoints' which is not declared in the descriptor for project :backend.

2017-12-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Glad to see you have solved the issue. Most grateful for the extra details: these might prove of utmost importance for those who want to solve a similar problem. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this

[google-appengine] Re: app declares a dependency from configuration 'compile' to configuration 'android-endpoints' which is not declared in the descriptor for project :backend.

2017-12-26 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Carlos, Have you updated the build.gradle file with the following dependencies section? dependencies { // V2: Endpoints Framework v2 migration compile 'com.google.endpoints:endpoints-framework:2.0.9' compile 'javax.inject:javax.inject:1' compile

[google-appengine] Re: seems not working https://cloud.google.com/community/tutorials/run-laravel-on-appengine-flexible tutorials

2017-12-26 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Ravi, This is a duplicate of your previous post

[google-appengine] Re: Issue with run-laravel-on-appengine-flexible

2017-12-25 Thread 'George (Cloud Platform Support)' via Google App Engine
In App Engine, the local file system that your application is deployed to is not writeable. This behavior ensures the security and scalability of your application. However, if the application needs to write and read files at runtime, App Engine provides a built-in Google Cloud Storage stream

[google-appengine] Re: Appengine Latency

2017-12-25 Thread 'George (Cloud Platform Support)' via Google App Engine
As mentioned in the referenced issue, work is in progress for reducing this 5.8 s for Java 8, together with all other possible instance spin-up times. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop

[google-appengine] Re: Visual Studio, Google Cloud deployment

2017-12-25 Thread 'George (Cloud Platform Support)' via Google App Engine
Do you attempt to deploy an app on a virtual machine in the compute engine? Is this for the app engine standard or flexible environment? Have you installed Cloud Tools for Visual Studio? Have you configured the Google Cloud Extension for Visual Studio to use your account? You may find out

[google-appengine] Re: error: (gcloud.app.create) INTERNAL: Internal error encountered

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
If you check the "Quickstart for .NET in the App Engine Flexible Environment" and click on the "Install the .NET Core SDK, LTS version" link , you'll notice that the indicated version is 2.1.3. By contrast, your version is 1.0. -- You

[google-appengine] Re: Codeigniter V 3.6.1 build failed in google app engine flexible environment

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Most grateful for your post above, that contains the detailed solution. People affected by the same issue will find your solution and profit from the time saved this way. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe

[google-appengine] Re: SSL certificate showing Obsolete connection settings after renewal

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
On your server, you might have a version of OpenSSL that was compiled without support for ECC (and thus ECDHE). You can run the nmap --script ssl-enum-ciphers -p 443 name-of-your-site to see what ciphers are supported on your server, and in which order. For more detail you may read the

[google-appengine] Re: error: (gcloud.app.create) INTERNAL: Internal error encountered

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
What version of .NET did you install? The 2.1.3 version is indicated in the Quickstart . -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: GCP keeps incurring charges!

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Akshay, You are entitled to a maximum limit of $300 during free trial. Expenses are displayed as you noticed. Your free trial is paused when you reach the $300 level of charges, and you have the option to upgrade to a paid account, should you so wish. The trial is free and you will not

[google-appengine] Re: Saml spring java application, Redirecting to http, port: 80 instead of https on app engine

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Ramya, This group is meant for general discussion about the platform, and voicing of opinions. For such technical details as in your #1 post above, you will be surely better served if you post on serverfault or similar sites, where experts are active and may

[google-appengine] Re: Annotation processors must be explicitly declared now. The following dependencies on the compile classpath are found to contain annotation processor. Please add them to the an

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Is this related to Android Studio? If so, you may try to disable the annotation processor error check, as indicated in the "Disable the annotation processor error check" sub-chapter of the "Migrate to Android Plugin for Gradle 3.0.0" document

[google-appengine] Re: error: (gcloud.app.create) INTERNAL: Internal error encountered

2017-12-22 Thread 'George (Cloud Platform Support)' via Google App Engine
What did you try before running "gcloud app create", exactly? What were the previous steps, in order? What is the output of gcloud info? You have created a project and installed the Cloud SDK. Have you initialized the SDK? You can find related information in the "Initializing Cloud SDK"

[google-appengine] Re: G Suite alerts me to suspend my account. then can my domain continue working for GAE?

2017-12-21 Thread 'George (Cloud Platform Support)' via Google App Engine
If the main issue is related to your email address provided for reference, you may rather try to have this email address replace with a valid one, an email you can access normally. We have no means to verify your pointing to google.com. In any case, this could only be a temporary solution, as

[google-appengine] Re: AppEngine FullTextSearch: Custom scoring

2017-12-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Filipe, Where did you find the "high priority" post from 2013? It would come handy to have a reference to it. You are right about Elasticsearch, you may use it

[google-appengine] Re: Codeigniter V 3.6.1 build failed in google app engine flexible environment

2017-12-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Dhandapani, To use a particular web framework, just add it to composer.json: { "require": { "symfony/symfony": " ^3.0" } } In your case, this statement should refer to Codeigniter, not Symfony. There are quite a few references to Symfony in the error messages displayed

[google-appengine] Re: G Suite alerts me to suspend my account. then can my domain continue working for GAE?

2017-12-20 Thread 'George (Cloud Platform Support)' via Google App Engine
More information is needed to get more clarity on the context of your issue. What is it meant by: "and the account is not a real email". If you cannot sign in to your G Suite account, you should contact G Suite support and read the "Users can't sign in to

[google-appengine] Re: Flexible Custom AppEngine: are volumes shared between services?

2017-12-19 Thread 'George (Cloud Platform Support)' via Google App Engine
App Engine Flex 'volumes' are in fact implemented as RAM drives. They are simply RAM sticks that are made to act like a hard drive. Some apps need what appears as a local file system to work properly, and these volumes fulfill this need (since writing to the hard drive is not allowed in App

[google-appengine] Re: Redislabs' memcache with a europe-west appengine app

2017-12-19 Thread 'George (Cloud Platform Support)' via Google App Engine
You surely get lowest latency for us-central1 if your Redis instance is situated in that zone. One of the first steps in setting up Redis for your flexible environment is hosting a Redis instance on Google Compute Engine.This instance can be located in the zone of your choice. You can read

[google-appengine] Re: Need to freeze my trial account

2017-12-18 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Gökay, Your trial ends once 12 months have elapsed or you've spent the $300 in credit. The amount of credit and days remaining are displayed at the top of the Google Cloud Platform Console. If you want to extend this 12-months period, or stop incurring charges when inactive as a

[google-appengine] Re: Unable to get urls to work without .php

2017-12-15 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Bhupinder, You are right, you need to define handlers for your app. This is done by indicating the needed paths in the app.yaml file. Detailed related information and examples are provided on the "app.yaml Reference" page

[google-appengine] Re: create/active/billed instance not same

2017-12-15 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Donghua, You seem to own an impressive array of free-tier accounts. For the most recent project, a warning is displayed: "Your application is at or near its free resource limit. You should enable billing to avoid service interruption". Which project do you feel affected by excessive

[google-appengine] Re: Cryptic deployment failure errors

2017-12-14 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Samuel, Is your SDK up-to-date? You may try running the gcloud components update and then gcloud info. What is the output of this last command? Trying again gcloud.app.deploy may then succeed. If the above steps do not fix your issue, it is worthwhile running the "gcloud config set

[google-appengine] Re: pg_connect(): Unable to connect to PostgreSQL server

2017-12-14 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Kirtan, Is the PostgreSQL instance running in the cloud platform as Cloud SQL for PostgreSQL, or in the compute engine environment? Is it external to the GCP? It may be worthwhile checking the postgresql.conf file and make sure that listen_addresses is not set to localhost. How did

[google-appengine] Re: Question: app engine search index & namespaces

2017-12-12 Thread 'George (Cloud Platform Support)' via Google App Engine
Search operations use the namespace associated with a context passed to them when they are called. To perform an operation in a namespace, wrap a context with appengine.Namespace, and use that context when calling methods on an index. You may see an example in the "Using namespaces with

[google-appengine] Re: I can't access my own bucket

2017-12-11 Thread 'George (Cloud Platform Support)' via Google App Engine
What were the results of running either "gcloud service-management enable dataproc" or the "gcloud service-management enable compute.googleapis.com" command? Did it display errors? When did the issue become apparent? At what time did you notice it? -- You received this message because you

[google-appengine] Re: dev_appserver: Connect to remote datastore

2017-12-08 Thread 'George (Cloud Platform Support)' via Google App Engine
The way you deployed your app in the cloud and ran it locally requires features to be retained, that would work for both. In particular, the development server bundled with the SDK (only in case of standard environment apps) doesn't support SSL at all: GAE dev_appserver.py over HTTPS

[google-appengine] Re: I can't access my own bucket

2017-12-08 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Bader, More information is needed to establish a firm basis for our investigation. Have you at any time deleted the default compute engine account? It cannot be seen on your IAM page in the developers' console. Have you changed roles and permissions for any of your existing accounts in

[google-appengine] Re: dev_appserver: Connect to remote datastore

2017-12-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Filipe, Does your code contain statements similar to the snippet below? remote_api_stub.ConfigureRemoteApiForOAuth( '{}.appspot.com'.format(project_id), '/_ah/remote_api') This is from the "Accessing App Engine with Remote API" documentation page

[google-appengine] Re: Specific desired hostname

2017-12-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Juan, It is possible to reserve a static address for your server, and an easy to accomplish procedure. A static external IP address is an external IP address that is reserved for your project until you decide to release it

[google-appengine] Re: dev_appserver: Connect to remote datastore

2017-12-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Filipe, Managed to reproduce the error, following the step-by-step instructions and code provided, but it may not be the right error. What I get is: ImportError: cannot import name remote_api_stub at (/base/data/home/apps/.../... /appengine_config.py:2) It this the error you receive as

[google-appengine] Re: How to separate GCP and another hosting

2017-12-06 Thread 'George (Cloud Platform Support)' via Google App Engine
Do you actually use CloudSQL to access your data? In that case you may have a look at the information in the "Connecting MySQL Client from Compute Engine" online document . >From GCP or from the flexible environment, you can also

[google-appengine] Re: dev_appserver: Connect to remote datastore

2017-12-05 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Filipe, At this stage we definitely need a representative sample of your code, that should enable reproduction of the issue, to deploy and test locally. For reasons of confidentiality, information has to be sent by way of a private message, generated from the drop-down menu at the top

[google-appengine] Re: jdk.nashorn.api.scripting.ScriptObjectMirror is a restricted class. Please see the Google App Engine developer's guide for more details.

2017-12-04 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Daniel, We need a representative sample of your code, to deploy here on the development server and reproduce the issue. To avoid loss of confidential information, it is better to send these details by private mail, using the drop-down menu of the edit button, at the top-right of the

[google-appengine] Re: dev_appserver: Connect to remote datastore

2017-12-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Filipe, Some context is possibly missing here. The "Using the Remote API in a local client" sub-chapter of the "Accessing App Engine with Remote API" document indicates 7 steps to follow. Have you looked at these, if

[google-appengine] Re: Migrating a project/site from GCE to GAE?

2017-12-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Torsten, You are right, you cannot just move a project to GAE, but you can use your existing GCE programming code for the app, open a GAE project and deploy the code in accordance with GAE guidelines. The "Deploying the Application" documentation page [1] provides more detailed

[google-appengine] Re: dev_appserver: Connect to remote datastore

2017-11-30 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Filipe, The lines: INFO 2017-11-23 09:23:28,487 client.py:755] Refreshing access_token ERROR2017-11-23 09:23:38,957 Applicant.py:25] Could not import google.cloud.bigquery as well as other lines, seem all to indicate that you cannot authenticate. You should verify

[google-appengine] Re: Google Drive V3 and service account for get files list from Google Drive Account (C#)

2017-11-30 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Daniele! A more detailed report on your solution might prove of great help for people encountering the same issue in future. -- 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

[google-appengine] Re: Google Drive V3 and service account for get files list from Google Drive Account (C#)

2017-11-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Daniele, It looks as if this portion of your code doesn't work properly, or doesn't have any effect: if (files != null && files.Count > 0) { foreach (var file in files) { Console.WriteLine("{0} ({1}) {2}", file.Name, file.Id); } As a general observation: When it comes strictly to

[google-appengine] Re: Google Drive V3 and service account for get files list from Google Drive Account (C#)

2017-11-29 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Daniele, It looks as if this portion of your code doesn't work properly, or doesn't have any effect: if (files != null && files.Count > 0) { foreach (var file in files) { Console.WriteLine("{0}

[google-appengine] Re: Google Drive V3 and service account for get files list from Google Drive Account (C#)

2017-11-28 Thread 'George (Cloud Platform Support)' via Google App Engine
What happens if you use the line: // List files. IList files = listRequest.Execute() in place of line: FileList files = listRequest.Execute(); -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group

[google-appengine] Re: jdk.nashorn.api.scripting.ScriptObjectMirror is a restricted class. Please see the Google App Engine developer's guide for more details.

2017-11-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Daniel, What is the output of the gcloud info command, and gcloud components list? What version of Java is actually used by your local development server, 7 or 8? In case of Java 8, there is no longer a java.lang.SecurityManager installed at startup, which means all Java standard

[google-appengine] Re: IAM loses permissions to deploy

2017-11-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Günter, More information is needed to set the basis of an effective investigation. You mention you "give that IAM user ownership", which account do you mean, exactly? The service accounts for your project did not change since August. You cannot re-create the same user with an identical

[google-appengine] Re: Standard design/practice for Chat windows on GAE.

2017-11-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Sumanta, The XMPP API, that would come quite handy in your case, has been shut down at the end of October, as documented on the "XMPP API Shutdown" page . There are alternatives

[google-appengine] Re: Push Queues working in App Engine Standard Local Server in Java

2017-11-28 Thread 'George (Cloud Platform Support)' via Google App Engine
Glad to hear you have found the proper solution to this issue. For the benefit of the public at large, it would help if you post a detailed description of the solution, with code examples. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group.

[google-appengine] Re: dev_appserver: Connect to remote datastore

2017-11-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Filipe, We'll examine the code samples provided and come back to you shortly. -- 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] Re: Setting up JupyterHub

2017-11-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Nicolaus, Authorized JavaScript origins in this case refer to the authorized redirect URIs to be called back as part of the 3-legged OAuth 2.0 flow. This flow is illustrated on the "Using OAuth 2.0 to Access Google APIs" documentation page

[google-appengine] Re: Push Queues working in App Engine Standard Local Server in Java

2017-11-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Azeem, If you want to get familiar with task queues, you are encouraged to follow a complete example. The one provided in documentation is: "Enqueue.java" on github

[google-appengine] Re: Google Drive V3 and service account for get files list from Google Drive Account (C#)

2017-11-27 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Daniele, It looks as if credentials have not been set properly for your project. How did you set app authentication, exactly, and how did you ascertain it works fine, as you mention? You can gather more detail by reading points a. to h. at Step 1 on the ".NET Quickstart" documentation

[google-appengine] Re: what can I do to prevent downtime?

2017-11-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Vick, You are encouraged to post your investigation's results here, and the eventual fixes, for the benefit of the community at large. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving

[google-appengine] Re: dev_appserver: Connect to remote datastore

2017-11-22 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Filipe, It is indeed possible to connect the dev_appserver to your production datastore. This has to be done in a way similar to what you already tried, by modifying appengine_config.py to call remote_api_stub.ConfigureRemoteApi(app_id=None, path='/_ah/remote_api',

[google-appengine] Re: what can I do to prevent downtime?

2017-11-21 Thread 'George (Cloud Platform Support)' via Google App Engine
Your project's logs show quite a few errors for the Cloud HTTP Load Balancer. You may consider checking these log entries and investigating possible error origins in your app's code and load balancing settings. Related solutions have been provided on stackoverflow in reply to the "Compute

[google-appengine] Re: Reaching a quota limit for the Android Oauth2 Client ID

2017-11-10 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Yosi, Are these 100 apps different in name only? This would mean that functionality is identical. Are these 100 apps different in functionality and developed separately, each unlike the other in what they do? -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: I can't access my static only website hosted in app engine

2017-11-08 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Naheez, Your logs contain repeated warnings similar to: „logMessage: 'Static file referenced by handler not found: www/index.html' ", and "resource: "/" ". Is your app.yaml configured correctly? The tutorial you followed describes the related step as: "Edit the app.yaml file and add

[google-appengine] Re: Reaching a quota limit for the Android Oauth2 Client ID

2017-11-07 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Yosi, You mention 100 Android credentials, then „breaking it to more than one app”, which looks somewhat contradictory. How does your setup look like? Do you speak of 100 different apps, or of 100 different installs of the same app for 100 different users? To protect confidential details,

[google-appengine] Re: Is it possible to configure two services on the same url in dispatch.yaml?

2017-11-07 Thread 'George (Cloud Platform Support)' via Google App Engine
How do you access the back-end service? Does your app.yaml define all your modules with handlers? To reproduce the issue, we need a representative sample of your code, that you may send via private email, visible to me only. The message can be created from the "reply" button's drop-down menu,

[google-appengine] Re: Is it possible to configure two services on the same url in dispatch.yaml?

2017-11-06 Thread 'George (Cloud Platform Support)' via Google App Engine
It is indeed possible to have multiple logical units that can share state using the datastore or memcache. You can use the dispatch.yaml to send incoming requests to a specific service (formerly known as modules) based on the path or hostname in the URL.The rules that you define in your

[google-appengine] Re: Datastore storage size

2017-11-03 Thread 'George (Cloud Platform Support)' via Google App Engine
It may be worthwhile mentioning here that, even if Datastore scales it's size automatically, one can prevent incurring costs due to extreme scaling. It is possible to set a spending limit for your project. This is documented in the "Quotas and Billing" sub-chapter of the "Sign up" page

[google-appengine] Re: App Engine closed local connection on Cloud sql

2017-11-03 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Mike, How was this issue solved exactly? A more detailed description might benefit Group members in future, and increase the value of your posting. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group

[google-appengine] Re: PHP Flexible Environment: Write access to directory possible?

2017-11-02 Thread 'George (Cloud Platform Support)' via Google App Engine
There is a PHP example for the flexible environment in the "Using Cloud Storage" document for PHP and flex. You may consider checking it for applicable sample code, to adapt to your particular requirements. -- You

[google-appengine] Re: PHP Flexible Environment: Write access to directory possible?

2017-11-02 Thread 'George (Cloud Platform Support)' via Google App Engine
However, if the application needs to write and read files at run-time, App Engine provides a built-in Google Cloud Storage stream wrapper that allows you to use many of the standard PHP filesystem functions to read and write files in an App Engine PHP app. This might prove a fitting solution

[google-appengine] Re: PHP Flexible Environment: Write access to directory possible?

2017-11-02 Thread 'George (Cloud Platform Support)' via Google App Engine
Hi Jörg, Glad to hear that the information has helped you take a decision that suits your purposes. Why is it absolutely necessary to write to the local disc? If you simply need to store data in a persistent manner, you may consider using cloud storage, as detailed in the "Using Cloud

[google-appengine] Re: PHP Flexible Environment: Write access to directory possible?

2017-11-02 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Jörg, The flexible environment does allow you to write to a directory on a local disk, but written files are ephemeral, due to the fact that the disk gets initialized on each VM startup, so your files will get deleted on this occasion. You can read more related detail on the "Choosing

[google-appengine] Re: Reaching a quota limit for the Android Oauth2 Client ID

2017-11-01 Thread 'George (Cloud Platform Support)' via Google App Engine
Hello Yosi, Are you referring to the procedure described on the "Authorizing Android Apps" page ? Is there a special use-case for the 100 apps under one project? Adding a lot of apps under the same project might not be the best idea, as this

<    1   2   3   4   5   6   7   8   9   >