[google-appengine] Re: A version of your app is using a deprecated version of Go. Please upgrade before October 1, 2019. Learn more

2019-09-14 Thread Chad Vincent
Based on the release notes feed, it was announced in June that Go 1.9 is deprecated and no *new* versions can be deployed after October 1. Existing versions, (e.g. GenericApp 1.5.0) will continue to run, but to release GenericApp 1.6.0 (or re-deploy 1.5.0) you'll have to do so using Go 1.11 or

[google-appengine] Re: How to build a private service on flex env ?

2018-04-06 Thread Vincent Lerouvillois
I'm sorry but that answer is not acceptable. OP clearly said he doesn't want its backend service to be accessed via Internet. I have the same requirement as the OP, and I have been researching for some time now. I fear that this requirement is not supported out of the box by App Engine. Can

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

2016-11-01 Thread Chad Vincent
t(key); > > Is there any caching involved here, on the Java side? If there is, then > what you and Jeff say is definitely the problem. > > > On Monday, October 31, 2016 at 11:47:12 PM UTC-4, Chad Vincent wrote: >> >> Just to be 100% clear (sorry I keep double-pos

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

2016-10-31 Thread Chad Vincent
* Objectify's caching for that entity type. On Monday, October 31, 2016 at 10:40:18 PM UTC-5, Chad Vincent wrote: > > > When I write an entity on the Python side, NDB invalidates the entity's > cache entry (according to the docs), > > I think you missed the *key* part

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

2016-10-31 Thread Chad Vincent
u...@gmail.com> >> wrote: >> >>> Thanks, Chad. Re your comment about caching, I am using NDB on the >>> Python side, which I thought used memcache automatically. So I guess I am >>> using caching, but I thought that modules in the same project (mine are) &

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

2016-10-31 Thread Chad Vincent
Also, make sure you aren't doing deferred writes or starting the Java request before your Python transaction closes. On Monday, October 31, 2016 at 2:05:06 PM UTC-5, Chad Vincent wrote: > > Yes. Consistency is handled by the database layer, not the application > runtime. > >

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

2016-10-31 Thread Chad Vincent
Yes. Consistency is handled by the database layer, not the application runtime. HOWEVER, if you are caching entities (Objectify, etc.) you either need to ensure your Memcache keys are identical or disable caching for those entities. Otherwise the Java cache may return a stale result because

[google-appengine] Does Google App Engine support Spring @RestController

2016-10-20 Thread Anders Vincent Lund
I would like to try out Google App Engine. I have an application written in Spring MVC. My controllers look like this: @RestController @RequestMapping("/something") public class Controller{ @RequestMapping(method = RequestMethod.POST) @ResponseStatus(value = HttpStatus.OK) @Override public

Re: [google-appengine] Mail Service Deprecation?

2016-06-29 Thread Chad Vincent
> > for >1000 emails, I don't think SendGrid would easily allow sending > emails, as far as I contacted such services before, they considered high > amount of emails as newsletters and required very strict consents from > users and proof of such consent > We've been using SendGrid (though not

[google-appengine] Re: Java 8 console application.

2016-06-03 Thread Chad Vincent
Actually, on second thought, I think Compute Engine could actually be what you want instead of ManagedVM. It's been a while since I dug into the differences. On Friday, June 3, 2016 at 2:14:22 PM UTC-5, Chad Vincent wrote: > > Sounds like you're looking at the AppEngine Classic documen

[google-appengine] Re: Java 8 console application.

2016-06-03 Thread Chad Vincent
Sounds like you're looking at the AppEngine Classic documentation where you'll likely want the AppEngine Flexible (ManagedVM) runtimes. AppEngine Classic doesn't run Java applications, it is a Java web service (think Jetty/Tomcat). It uses a web.xml to determine which classes that extend

Re: [google-appengine] Fire and forget URL

2016-05-25 Thread Chad Vincent
It's why you don't put any significant payload in the Task. You put it in a Datastore entity and use the key as the payload. Or if you really don't care if it fails, put it in Memcache and use the key as the payload. On Tuesday, May 24, 2016 at 5:33:06 PM UTC-5, barryhunter wrote: > >

[google-appengine] Re: Fire and forget URL

2016-05-24 Thread Chad Vincent
There is an Async method on the URLFetchService (in Java, at least) that you can call and just never process the Future. URLFetchService.fetchAsync(HTTPRequest) On Tuesday, May 24, 2016 at 11:29:17 AM UTC-5, Ashley Finney wrote: > > In GAE I want to fire a Post message at a URL but I do not

[google-appengine] Re: Delete app engine app

2016-05-12 Thread Chad Vincent
You mean the "Delete" button in the web console? It's here: https://console.cloud.google.com/iam-admin/projects That should give you a list of all projects with the option to delete the project in its entirety. AppEngine, Cloud Storage, BigQuery, etc. All of it in a check, click, and

[google-appengine] Re: Before starting with GAE

2016-05-11 Thread Chad Vincent
1. The App Engine Standard Environment only supports Java 7. You need to use what used to be called "App Engine Managed VM", or now App Engine Flexible Environment. It is in Beta, complete with a not-for-production-use and possible-breaking-changes warning. However, I think people have

Re: [google-appengine] Cannot send mail

2016-04-05 Thread Chad Vincent
I'm going to sit in the middle here. We have had several issues with spam filters (including one yesterday), the "from" address is masked for bounce purposes, so our IT staff always spends half an hour trying to figure out why a notice got caught before they remember to search for

[google-appengine] Re: java.lang.IllegalArgumentException: operating on too many entity groups in a single transaction.

2016-02-15 Thread Chad Vincent
Oh! A fourth... Walk over all the Orders instead of the transactions, and do an ancestor query to get all the transactions for each. Then each should be a single entity group. On Monday, February 15, 2016 at 1:16:01 PM UTC-6, Chad Vincent wrote: > > I can think of three ways: > >

[google-appengine] Re: java.lang.IllegalArgumentException: operating on too many entity groups in a single transaction.

2016-02-15 Thread Chad Vincent
I can think of three ways: 1) Iterate over the query results and delete each without the transaction. 2) Make a separate transaction for every group of 5 keys. 3) Use the MapReduce library and a MapOnlyMapper to walk all the keys. On Monday, February 15, 2016 at 10:23:50 AM UTC-6, Louise Elmose

[google-appengine] Re: Why can not login if we insert the record manually into real Online Google Datastore, but can if we insert record via our system?

2016-01-18 Thread Chad Vincent
Where is it failing? Is it failing to load the user, or failing to validate the password? Is it possible your hash+salt for the password isn't getting set properly when you set via console? (Is it deriving the salt from the app ID or namespace somehow?) On Sunday, January 17, 2016 at

[google-appengine] Re: GAE Inbound Email to non-default Module

2015-12-08 Thread Chad Vincent
Not super familiar with modules, but what about using the default module to store the mail and kick a task/URL on the handler module with the data? On Tuesday, December 8, 2015 at 9:21:30 AM UTC-6, Phil Hodey wrote: > > I want to use the inbound email facility in GAE but need to have a >

[google-appengine] Re: Managing credentials for other services used by an App Engine app.

2015-09-21 Thread Chad Vincent
We have a link to an external application, and just put the credentials (In this case, an API key with a matching username) in our User objects, and if it's a system-level event, it uses the key from the Administrator user. For anything that is global, we were just going to build an object in

Re: [google-appengine] Re: Managing credentials for other services used by an App Engine app.

2015-09-21 Thread Chad Vincent
Oh, and it also means we can update those creds without having to perform a full deploy. :) On Monday, September 21, 2015 at 2:02:30 PM UTC-5, Chad Vincent wrote: > > For our application (and I feel like most applications), if the datastore > is unavailable, any action being

Re: [google-appengine] Re: Managing credentials for other services used by an App Engine app.

2015-09-21 Thread Chad Vincent
This would > mean that if the datastore is unavailable, I don't have access to my config. > > On Mon, Sep 21, 2015 at 4:52 PM Chad Vincent <ccrvi...@gmail.com > > wrote: > >> We have a link to an external application, and just put the credentials >> (In this case, an AP

[google-appengine] Re: How to run a long task until it ends ?

2015-06-24 Thread Chad Vincent
. This is likely to cause a new process to be used for the next request to your application. (Error code 202) This log appears for each retry (around 3 times per task). G. Le mercredi 24 juin 2015 01:00:49 UTC+2, Chad Vincent a écrit : What are you getting in your logs? Any uncaught

[google-appengine] Re: How to run a long task until it ends ?

2015-06-23 Thread Chad Vincent
What are you getting in your logs? Any uncaught exceptions? You might want to add some debug logging statements and lower the logging level for a while to see what is happening. You do get 10 minutes for queries from the TaskQueue, so it isn't a timeout issue. On Tuesday, June 23, 2015 at

[google-appengine] Re: How to check which urls are doing a lot of Datastore reads?

2015-06-23 Thread Chad Vincent
Also, if you're using Memcache at all (manually or through something like Objectify), check the cache hit rate and see if there's been a change there. On Tuesday, June 23, 2015 at 1:03:16 PM UTC-5, Nick (Cloud Platform Support) wrote: The AppStats

[google-appengine] Re: TimeZones causing intermittent NPE

2015-05-26 Thread Chad Vincent
, Nick (Cloud Platform Support) wrote: Hey, actually, upon further poking, this happens when the input is null. I think your entity might not have its timezone property filled :) On Wednesday, May 20, 2015 at 2:52:19 PM UTC-4, Chad Vincent wrote: I seem to be getting this today in bursts

Re: [google-appengine] Java 8 and the App Engine

2015-05-22 Thread Chad Vincent
They also mentioned that they use OpenJDK, not Oracle, and are continuing to patch it for security issues despite Oracle's Java 7 being EoL. On Friday, May 22, 2015 at 11:45:18 AM UTC-5, Jeff Schnitzer wrote: If you read through the comments from Googlers here here you get the strong

[google-appengine] TimeZones causing intermittent NPE

2015-05-20 Thread Chad Vincent
I seem to be getting this today in bursts: java.lang.NullPointerException at sun.util.calendar.ZoneInfoFile.readZoneInfoFile(ZoneInfoFile.java:1042

Re: [google-appengine] Unable to connect application

2015-04-29 Thread Chad Vincent
, I have no idea. I'm not a computer guy. But I did just create a support ticket on my cloud service account. How can I find what you are asking for? On Tuesday, April 28, 2015, Chad Vincent ccrvi...@gmail.com javascript: wrote: What is in the AppEngine logs for the blank page requests

[google-appengine] Re: Unable to connect application

2015-04-28 Thread Chad Vincent
What is in the AppEngine logs for the blank page requests? Anything? On Monday, April 27, 2015 at 3:43:04 PM UTC-5, Madan Nirmalraj wrote: My team of developers has run into an issue after trying to push the app code to Google. Below are details from one engineer regarding the problem:

[google-appengine] Re: Increasing EMail quota from 100 ( Paid app )

2015-03-20 Thread Chad Vincent
There is special pricing with SendGrid for AppEngine/Google Cloud users. On Friday, March 20, 2015 at 3:51:58 AM UTC-5, Paul Canning wrote: Whilst not a fix per se, have you looked at a service like Mandrill? -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Google cloud endpoint error in production, no stack trace

2015-03-06 Thread Chad Vincent
Are you logging the exception? What language? I don't know what you're using, but the uncaught exception handler in Java does log the stack trace. On Friday, March 6, 2015 at 5:15:29 AM UTC-6, Aakash Bapna wrote: The log viewer in production does not show stack trace? Is there a setting

[google-appengine] Re: New Datastore query tool

2015-02-17 Thread Chad Vincent
this is strange considering tool was already much better than current broken one. There were reports of data loss when using the edit capabilities. So no, it was inherently worse. ;) On Friday, February 13, 2015 at 5:53:31 PM UTC-6, husayt wrote: Hi Mario. this is strange

[google-appengine] Re: Push to deploy discontinued?

2014-12-20 Thread Chad Vincent
Wait, what is this? I just spent 3 of the last 5 weeks trying to convert our Eclipse build to Maven so we could use push-to-deploy (and dependency management)... On Friday, December 19, 2014 9:22:57 PM UTC-6, Rae Wang wrote: Hi Lucas, I'm sorry this upsets you. I hear your need to have an

[google-appengine] Re: Private API with Cloud Endpoints

2014-12-14 Thread Chad Vincent
1) If your signing key is compromised, then someone with that information would be able to make calls by spoofing the client signature from your app. 2) Based on the documentation, it looks like no, but without knowing what was said in the SO thread, I wouldn't put money on it one way or the

[google-appengine] Re: Over 30 vulnerabilities found in Google App Engine

2014-12-12 Thread Chad Vincent
Google already mentioned in another thread https://groups.google.com/forum/#!topic/google-appengine/-2FdrrnXo5A that they've been working on it internally prior to Dec. 9. On Friday, December 12, 2014 1:11:32 PM UTC-6, husayt wrote: Actually, i see it as positive news. Someone tested GAE

[google-appengine] Re: Question about Datastore quotas

2014-11-24 Thread Chad Vincent
1,000,000, as you are reading 1,000,000 entities. If you do not cache the entities (Session Cache or Memcache), and load the page again, that is another 1,000,000 read operations. On Friday, November 21, 2014 6:17:25 AM UTC-6, John Louis Del Rosario wrote: I'm a bit confused about what the

Re: [google-appengine] Configuration Help? - Converting GAE+GWT Eclipse project to Maven

2014-11-19 Thread Chad Vincent
On Wednesday, November 19, 2014 12:50:17 AM UTC-6, Vinny P wrote: On Tue, Nov 18, 2014 at 1:51 PM, Chad Vincent ccrvi...@gmail.com javascript: wrote: 1. Debugging/running locally causes java.lang.NoClassDefFoundError: javax/mail/MessagingException in the console output. 1

[google-appengine] Configuration Help? - Converting GAE+GWT Eclipse project to Maven

2014-11-18 Thread Chad Vincent
About 2 years ago, started a from-scratch GAE/GWT project in Eclipse. Have been using Eclipse to build, test (GWT Classic DevMode), and deploy. With the new live breakpoints, push to deploy, etc., plus dependency management, I decided to put converting the project on the table. I've gotten

[google-appengine] Re: How to upload Adobe .air file in Google App Engine?

2014-11-13 Thread Chad Vincent
You would want to put the .air file in a Cloud Storage bucket, so you can add newer versions without having to redeploy your app. On Saturday, November 1, 2014 11:05:26 PM UTC-5, d...@sshenterprise.com wrote: Can google app engine be used to store or host an adobe air file (.air)? The .air

[google-appengine] Re: What is the point of making a new release with no changes?

2014-10-10 Thread Chad Vincent
1.9.12 had Python and PHP changes, but no Java or Go changes. Java/Go would've gotten new version numbers to stay in sync. Not sure what's up with 1.9.13, though. On Friday, October 10, 2014 1:51:48 PM UTC-5, husayt wrote: This is what I call to release for sake of calling it a release:

[google-appengine] Re: What is the point of making a new release with no changes?

2014-10-10 Thread Chad Vincent
, Chad Vincent wrote: 1.9.12 had Python and PHP changes, but no Java or Go changes. Java/Go would've gotten new version numbers to stay in sync. Not sure what's up with 1.9.13, though. On Friday, October 10, 2014 1:51:48 PM UTC-5, husayt wrote: This is what I call to release for sake

[google-appengine] Re: Project Sharding/Load Balancing

2014-09-05 Thread Chad Vincent
An interesting thought experiment, but effectively theft. I'm not really sure if there's an ethical application for this? On Thursday, September 4, 2014 8:09:24 PM UTC-5, Corey Gilmore wrote: Hi All, I build a method for load balancing on GAE. Why?: Yes, I understand that GAE auto scales

[google-appengine] Re: Site in development on appspot domain - restrict access to developers

2014-08-27 Thread Chad Vincent
You also can setup an IP whitelist, if all your developers have static IPs or come from a controlled block. Could also set up a holding page as the default version, and have everyone test using a specific-version URI. On Wednesday, August 27, 2014 2:53:35 PM UTC-5, Renzo Nuccitelli wrote:

[google-appengine] Re: Finding the source of datastore reads

2014-05-16 Thread Maël VINCENT
How many entities have you got in your datastore ? Do you have any queries which list a lot of entities possibly ? Do you use memcache to avoid to repeat some queries ? Is your applications old ? There is no update that could be cause your problem as far as I know. Le lundi 12 mai 2014 22:15:38

[google-appengine] Re: Twitter API For Google App Engine

2014-05-16 Thread Chad Vincent
Here's the proper way to fetch something via HTTP from AppEngine: https://developers.google.com/appengine/docs/php/urlfetch/ On Tuesday, May 13, 2014 7:20:05 AM UTC-5, Touqeer Shafi wrote: I am making twitter bot on google app engine. i am facing problem while posting to twitter api. using

[google-appengine] Re: How much do I pay to extend the datastore read operations?

2014-05-16 Thread Chad Vincent
You set up billing and set a quota. AppEngine then bills you for any reads you use above the free quota. On Friday, May 16, 2014 12:24:45 PM UTC-5, arame...@mysummitps.org wrote: Hello, I have an app engine app that is running on a free quota. The datastore queries have been exceeded and

[google-appengine] Re: Issue: Inbound Mail repeating requests

2014-05-14 Thread Chad Vincent
Possibly? We were running into the 60 second limit regularly. We re-factored, and now just strip the email of relevant data, and toss that on the TaskQueue for later processing. It's working very well that way so far. On Tuesday, May 13, 2014 3:59:17 PM UTC-5, Kinesh Patel wrote: We've run

Re: [google-appengine] Re: Announcing a credit for App Engine applications with new custom domains

2014-03-27 Thread Chad Vincent
It says right in the Features description that it allows you to attach DNS records to AppEngine and GCE instances, so you no longer need Apps to make that connection. As for having zones elsewhere, I haven't looked at it that closely. Our application has its own domain, so it isn't a concern

Re: [google-appengine] Re: New Pricing

2014-03-26 Thread Chad Vincent
Even BigQuery is cheaper for storage than Datastore now. Totally helps us, since BQ is a better solution for one of our data entities anyway, and the rest should fit in the 1GB free for the foreseeable future. On Tuesday, March 25, 2014 5:24:10 PM UTC-5, Marcel Manz wrote: Great to see the

Re: [google-appengine] Re: Announcing a credit for App Engine applications with new custom domains

2014-03-26 Thread Chad Vincent
Or you can use the new Cloud DNS service. Not free, but it claims to do what everyone here wanted, including providing an API. https://cloud.google.com/products/cloud-dns/#features On Wednesday, March 26, 2014 11:39:32 AM UTC-5, Vinny P wrote: On Wed, Mar 26, 2014 at 2:40 AM, Sandeep Koduri

Re: [google-appengine] Re: New Pricing

2014-03-25 Thread Chad Vincent
That's how it's always been... 100 recipient cap until you request a higher cap to discourage spammers from using AppEngine as a distribution platform. On Tuesday, March 25, 2014 2:02:14 PM UTC-5, PK wrote: I also see in the new Pricing list “E-mail API: Fee: 100 recipients More: Contact

[google-appengine] Re: question on performance and storing non-indexed data in the datastore

2014-03-13 Thread Chad Vincent
You didn't say which language you're using, but if you're on Java, I strongly suggest Objectify. It defaults all columns/fields to unindexed unless you decorate the field with an @Index annotation. On Wednesday, March 5, 2014 2:55:12 AM UTC-6, Mattan Furst wrote: I have a question regarding

[google-appengine] Re: Google Clound terms of service

2014-02-17 Thread Chad Vincent
It's probably more that the Datastore is not stored encrypted. So from a legal standpoint, it has to be treated as if Google accesses the data. On Thursday, February 6, 2014 9:22:17 PM UTC-6, Allan Lopes wrote: I have a webapp that uses Google App Engine and Google Cloud Datastore services.

Re: [google-appengine] A comparison between Digital Ocean $5 plan and App Engine B$ instance type.

2014-02-17 Thread Chad Vincent
I'm in a similar boat. I'm a small-business sysadmin turned developer. We can work with our current VPS service to add load balancing, alter our front-end to be easily cloneable, spin up extra frontends as demand requires, and continue to work on new features. Or we can go to AppEngine, get

[google-appengine] Re: Centralized logging to cloud storage

2013-12-27 Thread Chad Vincent
While Vinny probably has the better option, if you wanted something without a rolloff and search options, I would use Objectify and make a LogEntry object. Just parse the request, build the object, tell Objectify to write it asynchronously, and return. Should be fast and reliable, but without

[google-appengine] Re: Paid app e-mail quota 100 of 100, but not automatically raised?

2013-12-20 Thread Chad Vincent
opened. That would be a question for the GAE team... On Friday, December 20, 2013 1:43:26 AM UTC-6, Erik Zivkovic wrote: On Thursday, December 19, 2013 8:25:41 PM UTC+1, Chad Vincent wrote: It took about 5-6 days for the request to clear when I asked. We knew it would be an issue in the long

[google-appengine] Re: Paid app e-mail quota 100 of 100, but not automatically raised?

2013-12-19 Thread Chad Vincent
rates. On Thursday, December 19, 2013 4:57:38 AM UTC-6, Erik Zivkovic wrote: On Wednesday, December 18, 2013 9:04:16 PM UTC+1, Chad Vincent wrote: The Email quota is not automatically raised to prevent spammers from using GAE as a relay. You have to manually request that the quota be raised

[google-appengine] Re: Paid app e-mail quota 100 of 100, but not automatically raised?

2013-12-18 Thread Chad Vincent
The Email quota is not automatically raised to prevent spammers from using GAE as a relay. You have to manually request that the quota be raised. On Tuesday, December 17, 2013 6:34:33 AM UTC-6, erik.z...@sonymobile.com wrote: Hi, My app has hit it's e-mail quota 100/100 e-mails, but I have

[google-appengine] Re: 100 Email Quota

2013-12-06 Thread Chad Vincent
A payment cycle is the 2nd of the month - the 2nd of the following month. I don't think you actually have to be billed, as when we extended our email quota we didn't go over quota that month. On Friday, December 6, 2013 10:31:32 AM UTC-6, Peabody Wormsworth wrote: Hi, I have an application

[google-appengine] Re: Question using datastore to achieve this

2013-12-06 Thread Chad Vincent
This is correct. I think Jimin maybe doesn't realize that the parent key is *appended* to the child's, so it is a 1:N relationship, not a 1:1 relationship? Jimin, what language are you using? If you're using Java, then Objectify can make this much simpler, as you just decorate a [Customer]

[google-appengine] Re: Having trouble running my first app engine app

2013-12-03 Thread Chad Vincent
This isn't a problem with Mavericks, it's a problem with Java 7u45 on any version of OSX. Other people are reporting it on Mountain Lion. On Tuesday, December 3, 2013 12:18:51 PM UTC-6, Sidney wrote: Hey Vinnie, Thanks for the response. So I am currently running OSX Mavericks, is the

[google-appengine] Re: where to put credentials?

2013-11-15 Thread Chad Vincent
In a global settings object in the datastore sounds good to me. On Friday, November 15, 2013 4:18:53 AM UTC-6, stephanos wrote: Hi there, my project currently stores API keys and other credentials in the source code. That's far from ideal. In Heroku you can set global environment variables

Re: [google-appengine] Is there 3-4 second differences between instance clocks?

2013-11-03 Thread Chad Vincent
It seems to be fixed, but at one point on a previous project we were seeing clock skews of over 30 minutes. On Saturday, November 2, 2013 7:33:32 AM UTC-4, timh wrote: I have at times experienced definite clock skews (I documented some up as much a minute in the early stages.) I personally

[google-appengine] Re: handle https request on local machine using google appengine sdk

2013-10-08 Thread Chad Vincent
Any particular reason you need to test https in dev? On Tuesday, October 8, 2013 10:10:22 AM UTC-5, Chetan Dhembre wrote: Hi, I have created one appplication using google app engine sdk in java. And it is handling http request properly. but i unable to handle https request. I tried to

[google-appengine] Re: java.lang.NoSuchMethodError: com.google.common.collect.ImmutableList.copyOf

2013-08-21 Thread Chad Vincent
When you added Guava locally, did you put it in war/WEB-INF/lib? If so, it should have deployed with the rest of your application. On Tuesday, August 20, 2013 6:51:26 AM UTC-5, Mukesh Joshi wrote: I have a Appengine+GWT+Visualization charts application which run fine in the local eclipse

[google-appengine] Re: Security advisory: SSL is Gone

2013-08-07 Thread Chad Vincent
Since the problem is with SSL and GZIP combined? Every bit as vulnerable as every other host out there. The protocols themselves are issue, so without breaking things there's nothing Google could do. As far as the injection/measuring, that is all in how well you protect against XSS in your

[google-appengine] Re: BREACH attack - is App Engine vulnerable?

2013-08-07 Thread Chad Vincent
I'm with the person from Iron Mountain... Just like CRIME, they both seem to require some kind of XSS vulnerability in the page, then take advantage of TLS and GZIP. As long as your users don't use a lot of suspicious add-ons and you prevent XSS as best as you can, I really don't think

[google-appengine] Re: Time Syncronization

2013-07-25 Thread Chad Vincent
My current project isn't very time-sensitive, but my previous one we saw servers up to 45 minutes slow. Made it hard to make fetches from Amazon S3 buckets with a 30-minute signed token when it was already expired by 15 minutes... On Thursday, July 25, 2013 2:27:04 PM UTC-5, Richard wrote:

[google-appengine] Re: GWT + GAE eclipse plugin - how not to compile

2013-07-25 Thread Chad Vincent
GWT must be compiled before being used, and it requires tools that are not available on GAE. If you're looking to debug the JS that GWT generates in a live environment, you can change the compilation level from obfuscated to pretty or detailed. On Thursday, July 25, 2013 2:26:42 PM UTC-5,

[google-appengine] Re: Joomla website

2013-07-25 Thread Chad Vincent
Looks like Joomla just started working on it last week-ish: https://groups.google.com/forum/#!topic/joomla-dev-cms/JmDLyDPOGFA On Thursday, July 25, 2013 10:54:18 AM UTC-5, Sravan Kumar wrote: Hi There, Good Day!! Is there a provision where I can deploy my joomla based websites into

[google-appengine] Re: Importing data to datastore with bulkloader : error and long back off, but import finish ok

2013-06-03 Thread Vincent Lee
brian, Can I borrow your local tools? On Tuesday, November 6, 2012 2:51:49 PM UTC-5, Brian wrote: Yes, I ran into the same problem a couple of years ago with the local SDK, and again recently when I first deployed my app to appspot.com. The solution that worked for me was to batch upload

Re: [google-appengine] Deployment with java

2013-05-21 Thread Chad Vincent
Then you want to use the cmd/bash scripting instructions, but write your script with Java or Groovy. You'll still have to call the external tools, as there are no Java libraries to perform the deployment. On Tuesday, May 21, 2013 2:30:19 AM UTC-5, Vincenzo Chindemi wrote: In this page, the

[google-appengine] Re: Google app script and google app engine

2013-05-13 Thread Chad Vincent
App Engine doesn't support Google App Script for server-side code. You may want to ask in a Google Apps group instead. On Sunday, May 12, 2013 1:26:45 AM UTC-5, Salar Darwish wrote: I have a google app script and i want to upload this to google app engine to link it to my google domain.

Re: [google-appengine] Noticed Cloud Integration in Application Settings

2013-05-09 Thread Chad Vincent
. Moisés Belchín. 2013/5/8 Chad Vincent ccrvi...@gmail.com javascript: My guess is that they will be explaining next week at I/O. On Wednesday, May 8, 2013 2:59:29 AM UTC-5, Moises Belchin wrote: Can anyone explain us this new feature and how it works ? Thanks to all. Saludos

Re: [google-appengine] Noticed Cloud Integration in Application Settings

2013-05-08 Thread Chad Vincent
My guess is that they will be explaining next week at I/O. On Wednesday, May 8, 2013 2:59:29 AM UTC-5, Moises Belchin wrote: Can anyone explain us this new feature and how it works ? Thanks to all. Saludos. Moisés Belchín. 2013/5/8 Jason Collins jason.a...@gmail.com javascript:

Re: [google-appengine] Re: Resource not found exception thread

2013-05-08 Thread Chad Vincent
From what I've seen, System.err does not get logged by default. Try explicitly logging the exception in your log statement. On Tuesday, May 7, 2013 3:51:50 PM UTC-5, Vivek Kumar wrote: Thanks for replying. e.printStackTrace() does not print anything in the app engine logs/ All i see is:

[google-appengine] Re: Google to add new runtime at I/O

2013-05-02 Thread Chad Vincent
Joomla and Drupal are both very common CMS implementations, and WordPress is still broadly used. All three are in PHP, and improvements to use the datastore instead of an SQL backend in those would open up AppEngine as a quick, scalable hosting solution. Also, it is no more from old past than

[google-appengine] Re: Application Limit in App Engine

2013-05-02 Thread Chad Vincent
I don't know about asking for an increase, but disabled apps and apps with billing enabled don't count. On Wednesday, May 1, 2013 10:55:54 AM UTC-5, stephanos wrote: I found myself reaching the 10 applications limit. What's the current way to ask for an increase? PS: I try to create a

[google-appengine] Re: Webpages are not updating properly after a datastore operation performed

2013-04-16 Thread Chad Vincent
Are you using AJAX, or a generated page? If AJAX, you should put the new object in the display on successful write. If generated, you're probably generating the new page before the write/index update completes. On Tuesday, April 16, 2013 7:33:37 AM UTC-5, Nijin Narayanan wrote: Hi, When a

[google-appengine] Re: newbie: multi user app - getting the price per user

2013-04-09 Thread Chad Vincent
. On Tuesday, 9 April 2013 17:23:32 UTC+2, Vinny P wrote: On Monday, April 8, 2013 3:01:24 PM UTC-5, Chad Vincent wrote: You're going to have to take all your billable actions, log them to the datastore, and build a reporting framework. For datastore calls and email and such, this should

[google-appengine] Re: New to GAE

2013-04-09 Thread Chad Vincent
Searchable/indexable limit is 500 characters. Otherwise, use com.google.appengine.api.datastore.Text for the field type, which has no character limit. https://developers.google.com/appengine/docs/java/javadoc/com/google/appengine/api/datastore/Text

[google-appengine] Re: newbie: multi user app - getting the price per user

2013-04-08 Thread Chad Vincent
Your users could be using the Google framework, OAuth, or be custom-built... How would AppEngine know which you're using? You're going to have to take all your billable actions, log them to the datastore, and build a reporting framework. For datastore calls and email and such, this should be

[google-appengine] Billing Question - Multiple cards in one Wallet

2013-04-01 Thread Chad Vincent
I have a personal card setup with Google Wallet in addition to the company card. I setup my App Engine to bill to Wallet, on the company card. The $0 pending test charge shows on the company card. When the first bill processed last week, it put it on my personal card instead. Does it just

Re: [google-appengine] Image Chart Replacements?

2013-03-22 Thread Chad Vincent
Sorry, I tagged the post Java, and forgot the tags don't show up to people on the email digests. On Friday, March 22, 2013 4:57:42 AM UTC-5, Kalle Pokki wrote: You didn't mention your language, but for Python, there are at least matplotlib and PNGCanvas

[google-appengine] Re: Image Chart Replacements?

2013-03-22 Thread Chad Vincent
(for instance, java.awt.Color). I ended up hosting JFreeChart + REST wrapper on an external server, then calling to it from my AppEngine app. -Vinny On Tuesday, March 19, 2013 5:40:05 PM UTC-5, Chad Vincent wrote: Trying to send a pair of simple line charts in an automated status email. Can't

[google-appengine] Image Chart Replacements?

2013-03-19 Thread Chad Vincent
Trying to send a pair of simple line charts in an automated status email. Can't use the Visualization/Image API, since almost all email clients block Javascript. I would use the Image Chart API, but with deprecation being less than two years out, I'd rather not have to go back and do it

[google-appengine] Re: How do you memcache properly? :-)

2013-03-18 Thread Chad Vincent
Are you on Java, Go, or Python? On Java, Objectify will use memcache for object storage, so you use queries (to get the keys), but not reads. This would abstract away the cache usage in both situations so it's automatic. It's not for everyone, but worth looking into. On Sunday, March 17,

[google-appengine] Re: How much space in memcache

2013-03-07 Thread Chad Vincent
On Thursday, March 7, 2013 1:13:35 PM UTC-6, Vinny P wrote: The smartest thing to do is to simply put everything into memcache, and when you need the object, pull it out. If the pull fails, then query the datastore/cloud sql. Or if you like, you could use Objectify which manages the

[google-appengine] Re: How many entities can be placed into datastore?

2013-02-28 Thread Chad Vincent
On Wednesday, February 27, 2013 7:30:42 PM UTC-6, Alexander Trakhimenok wrote: You can have as many entities as you want and speed does not depend on number of entities. You can have as many entities as you have IDs. If you're using a Long ID, you have (2^63)-1 (or around

[google-appengine] Re: I want to put my android-app data onto some central server. Does Google app-engine has this facility? If it has then how xcan I achieve it

2013-02-21 Thread Chad Vincent
https://developers.google.com/eclipse/docs/appengine_connected_android On Wednesday, February 20, 2013 10:28:15 AM UTC-6, Husnain Iqbal wrote: Hey guys, I developed an android-app; actually my (first android app) and it has a big amount of data so I want to put this data onto some central

[google-appengine] Re: Email Bounce Callback - Looks broken

2013-02-15 Thread Chad Vincent
You have a typo, either in your message or in your app.yaml. Bounce notification happens on /_ah/bounce, not /_ah_bounce. -- 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

[google-appengine] Re: Is HIPAA compliance on Google App Engine possible?

2013-02-07 Thread Chad Vincent
1) No product can ever be HIPAA Compliant, as end-user policies (in this case, how you design your app to protect the data, allow access, etc.) can allow breaches no matter how much HIPAA was taken in consideration when the software (GAE) was written. 2) If you're going to write a web

[google-appengine] Re: Deploy error: Unable to update app: The application contains Java 7 classes, but the --use_java7 flag has not been set.

2013-01-28 Thread Chad Vincent
You can't. Java 7 is in beta. You need to go into Eclipse and change the project settings to Java 1.6, then fix any build errors from using Java 7 classes. https://groups.google.com/forum/?fromgroups=#!topic/google-appengine/_NTdXKMiLlU -- You received this message because you are

Re: [google-appengine] Help! Billing Out of Control!

2013-01-06 Thread Chad Vincent
I don't mean to butt in, but it appears you didn't read the migration docs properly. The migration buttons are under Application Settings View Migration Tool, not under Datastore Admin. https://developers.google.com/appengine/docs/adminconsole/migration#Using_the_Migration_Tool On Friday,

[google-appengine] Distinct Recipients Emailed Quota limit ?

2012-11-27 Thread Vincent Juhel
Hello, We sent today 247 emails to about 30 different email adresses. Unfortunatly, the quota is used as if we used 247 email adresses. I'm sure same adress received the emails. Do you have an explanation ? Thanks, Vincent MailMail API Calls [image: 0%] 0%247 of 1,771,789OkayRecipients

[google-appengine] Unusable Time accuracy in an instance - How best to compensate?

2012-10-29 Thread Chad Vincent
I'm working on a project that uses GAE for datastore/services and Amazon S3 for bulk data storage. When using a HEAD request to S3 to verify an upload, we're getting this back from S3: ?xml version=1.0 encoding=UTF-8? ErrorCodeAccessDenied/CodeMessageRequest has

[google-appengine] Is it possible to remove Set-Cookie in the HTTP response header?

2012-10-04 Thread Vincent
I'm using a MCU to access a web server based on Google App Engine. the MCU has very limited resource and the response header is to big for it. Is there anyway to remove the whole set-Cookie header ? ( just remove the ACSID; it's too long) Thanks.. -- You received this message because you are

[google-appengine] Re: Outages?

2012-03-13 Thread Vincent
Hi GAE guys, same issue for us ... please react ... our cutomers are complaining :-( appid: logos-contacts Regards Vincent 1. 2012-03-12 11:31:23.508 /_ah/login_required?continue=https://logos-contacts.appspot.com/500 72138ms 0kb Mozilla/5.0 (Windows NT 5.1) AppleWebKit/534.24

  1   2   >