Re: [google-appengine] use O auth 2.0 in gspread library ?

2013-11-01 Thread Vinny P
On Fri, Nov 1, 2013 at 2:37 AM, Vijay Kumbhani wrote: > gspread library : https://github.com/burnash/gspread > > give me one example > > The *gspread* library does not directly handle OAuth, see the open pull request at https://github.com/burnash/gspread/pull/75 . The library expects that the ho

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
Fortunately my data is restored by cancelling removing my compute engine project. Thanks Brian! On Saturday, November 2, 2013 3:03:27 AM UTC+8, Brian Dorsey wrote: > Hello Tapir, > > I responded via gs-team. Let's continue this conversation there, so I can > help with your specific project ids

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

2013-11-01 Thread Vinny P
On Fri, Nov 1, 2013 at 9:44 PM, Kaan Soral wrote: > I've been seeing the errors pop up, but it's always between datetime's > that differ only by 2-3 seconds > Than I remembered a *really* old discussion about instance time > differences and it seems that the cause of these 2-3 second differences

Re: [google-appengine] Not able to access an excel file saved in BlobStore

2013-11-01 Thread Vinny P
On Tue, Oct 29, 2013 at 2:17 AM, anuja bothra wrote: > My serve method : > > public class Serve extends HttpServlet { > > public void doGet(HttpServletRequest req, HttpServletResponse res) > > throws IOException { > > BlobKey blobKey = new BlobKey(req.getParameter("blob-ke

Re: [google-appengine] Python urlfetch suddenly stopped working

2013-11-01 Thread Vinny P
On Fri, Nov 1, 2013 at 4:15 PM, wrote: > I seem to recall that there is a proxy between appengine instances and the > internet, and I'm wondering if this has problems. > > There is a caching layer, but it usually doesn't cause this type of problem. It's worth ruling it out though. You can force

[google-appengine] Re: Is GAE the right choice for e-commerce?

2013-11-01 Thread Mike Knapp
Hi Umesh We use Adyen to process our payments. However there are many solution providers on the market you could use, e.g. Stripe or Braintree. Mike :) On Saturday, November 2, 2013 11:02:59 AM UTC+11, Kaan Soral wrote: > > What do you mean by that question - are you looking for payment soluti

Re: [google-appengine] Error Message After Creating Accounts

2013-11-01 Thread Vinny P
On Tue, Oct 29, 2013 at 2:15 PM, G. A. Dietrich wrote: > I just created 16 new accounts and put them in a sub organization for my > domain. When I click on one of the new users I get the error: > > We are unable to process your request at this time. Please try again > later. (Error #1000) > > I

Re: [google-appengine] Not authorized to access instance: [my app id]appspot.com:[my sql instance]

2013-11-01 Thread Vinny P
On Sat, Oct 26, 2013 at 1:16 PM, jeff schulz wrote: > all of a sudden my app cant access my cloud database. > > *Not authorized to access instance: [my app id]appspot.com:[my sql instance]* > > instance settings for authorized applications is correct. > > correct application identifier is in my a

Re: [google-appengine] how to handle this kind of exception?

2013-11-01 Thread Vinny P
On Mon, Oct 28, 2013 at 7:18 PM, hansyin wrote: > 1. how can I catch and ignore this error, then app can skip the problem > url and keep working with all other urls? right now the app just stopped > 2. similar as 1, how can I catch it and then try it again, let's say try 3 > times and then skip t

Re: [google-appengine] Socket for UDP works in development server, fails deployed

2013-11-01 Thread Vinny P
On Tue, Oct 29, 2013 at 11:40 AM, Andrea Minari wrote: > W 2013-10-29 16:36:50.629 com.cb.util.metric.GaeMetric commit: failed to > commit metric in 40226 error: > com.google.apphosting.api.DeadlineExceededException: This request > (b07775a3893d6656) started at 2013/10/29 16:35:51.219 UTC and wa

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

2013-11-01 Thread Kaan Soral
I have a caching logic for datastore entities, the cache was invalidating elements when changes are applied to the entity The logic was if change_time>cache_item_created: delete cache_item It also checks whether the cache_item has been applied before and logs an error if it does I've been seeing

Re: [google-appengine] dev server global scope

2013-11-01 Thread Vinny P
On Sun, Oct 27, 2013 at 5:09 AM, Quint van den Muijsenberg < muijsenbe...@gmail.com> wrote: > Does the dev server cache the global python cache? Just like the > production GAE does? > I'm under the impression that it doesn't. > > Yes, the dev server does store global python variables. However the

Re: [google-appengine] UDP Socket send timeout

2013-11-01 Thread Vinny P
On Wed, Oct 30, 2013 at 1:28 PM, wrote: > I'm trying to send a UDP packet using DatagramSocket in my GAE app in > Java. But I always get a timeout error during the send operation. I try > different IPs and ports, even 8.8.8.8 port 53 doesn't work. Though the code > works fine from my local machin

Re: [google-appengine] Deprecation of File Blobs in favor of Google Cloud Storage

2013-11-01 Thread Barry Hunter
From https://developers.google.com/appengine/docs/python/googlecloudstorageclient/#Python_Using_GCS_client_library_with_the_development_app_server *> You can use the client library with the development server from SDK version 1.8.1 and greater. This provides GCS emulation using the local disk. *

Re: [google-appengine] Do free quotas expire? (i.e. is it same as AWS 1 year free tiers)

2013-11-01 Thread Barry Hunter
If you stay within the free quotes - you can continue indefinitely. They are not time limited. Very occasionally they change the limits, so an application thats free today, might not be under tomorrows new quota's, but overall it doesnt happen very often. There are a few are 'trials', but they

[google-appengine] Re: Is GAE the right choice for e-commerce?

2013-11-01 Thread Kaan Soral
What do you mean by that question - are you looking for payment solutions? By the way, unrelated, I had the youtube success story bookmarked, stumbled upon it not so long ago, envied the result a lot :) I'm also struggling acquiring an initial user-base, reached out to 1-2 tumblr celebrities wit

[google-appengine] UDP Socket send timeout

2013-11-01 Thread admin
Hi everyone, I'm trying to send a UDP packet using DatagramSocket in my GAE app in Java. But I always get a timeout error during the send operation. I try different IPs and ports, even 8.8.8.8 port 53 doesn't work. Though the code works fine from my local machine. And the code is very simple:

[google-appengine] Re: Python WebScraping app

2013-11-01 Thread Praveen kumar s
On Wednesday, 2 July 2008 06:37:53 UTC+5:30, luismgz wrote: > > I also use BeautifulSoup and it works great. > This is a little sample (modified from the BeautifulSoup's site) to > scrap data from a site and email the results: > > class soup(app.page): > def GET(self): > web.head

[google-appengine] why

2013-11-01 Thread yangwenyi
Why China should shield some services of google? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com. To post to

[google-appengine] Python urlfetch suddenly stopped working

2013-11-01 Thread philip . gladstone
As of a few hours ago (may 10:00 UTC on Movember 1), urlfetch (from a python instance) stopped working. It now always returns a DeadlIneExceededError after 5 seconds. This is always trying to fetch data from my server. I tried doing a similar fetch from another appengine instance, and it also f

[google-appengine] Deprecation of File Blobs in favor of Google Cloud Storage

2013-11-01 Thread Michael Nischt
I just read that problematically creating blobs is deprecated in favor of Google Clould Storage ( https://developers.google.com/appengine/docs/go/blobstore/#Go_Writing_files_to_the_Blobstore ). For me the best thing about GAE is that you can develop completely locally ( *offline*). However, as

[google-appengine] getServingUrl on cloud storage image not working from two apps

2013-11-01 Thread michielwerk
Hi, I have the following problem: 1) I drop an image with the cloud storage console in a bucket. 2) From an app engine application I do getServingUrl and I recieve a working URL of the image. Used code: ImagesServiceFactory.getImagesService().getServingUrl(ServingUrlOptions. Builder.withGoogleS

[google-appengine] Re: No more warmup requests!

2013-11-01 Thread Hans Jakobsen
I have a similar situation. Have set minimum idle instance to 3, but since two days ago the number of actual instances dropped to be exact one. It remains one no matter what latency the customer has and no matter what setting I have in idle instances. I did not make any changes at that time, so

[google-appengine] Lots of Java downtime today

2013-11-01 Thread Keith Mukai
Facing a ton of intermittent Java downtime today. Earliest server error came at 11:19am CDT. Logs indicate that new server instances are struggling to initialize. Service has been up and down ever since. GAE status page shows spikes of increased Java latency but no alert status. Is there a broa

[google-appengine] Do free quotas expire? (i.e. is it same as AWS 1 year free tiers)

2013-11-01 Thread JScoobyCed
My company uses AWS and there is the free hosting for 1 year (12 months of free "server" and then have to pay). Are any of the free quotas in Google AppEngine hosting limited in time? I am not asking for the quotas themselves (I read the details on Google AppEngine page and I can see the 1GB data

[google-appengine] Re: Is GAE the right choice for e-commerce?

2013-11-01 Thread Umesh Veerasingam
Hi Mike, Do you have any documentation/API (links) about the visa/credit card payment option on your site(Shoes of Prey)? Thanks. On Monday, February 1, 2010 7:19:04 AM UTC-6, Mike wrote: > > Hi NG > > We are running our business on AppEngine. (Search "Shoes of Prey" on > Google to find us.) >

[google-appengine] Error Message After Creating Accounts

2013-11-01 Thread G. A. Dietrich
I just created 16 new accounts and put them in a sub organization for my domain. When I click on one of the new users I get the error: We are unable to process your request at this time. Please try again later. (Error #1000) I logged out and tried to login to one of the new accounts with the t

[google-appengine] how to handle this kind of exception?

2013-11-01 Thread hansyin
Hi, I have a cron schedule setup for my app, it will try to do a list of things(access a list of urls). I use a loop to access all of my urls: for url in url_list: access_url now I got below error sometimes: "Deadline exceeded while waiting for HTTP response from URL: http://myacc

[google-appengine] Update on hosting appengine apps in EU data centres

2013-11-01 Thread Anthony Nolan
This has been hanging around a while, but it is still causing me problems. We have just started to engage with the public sector in Ireland. They have very strict data protection requirements. The current media focus on US spying is not helping when I try to explain that everything is safe in th

Re: [google-appengine] Socket for UDP works in development server, fails deployed

2013-11-01 Thread Andrea Minari
Hi, we're currently encountering the same problem. We would like to use UDP packets to send metric to a 3rd party system (hostedgraphite). Trying to send UDP with appengine succeed on test server/my console, but fails once deployed to our servers. Code: log.info("building socket")

[google-appengine] BPM on GAE? whats the best choice?

2013-11-01 Thread Luis Carlos Ramírez Rodríguez
So my company uses GAE to host all our business intelligence and more often than not we stumble upon the need to define business process using some flavor of process definition (BPEL? BPMN?). I've google my way into trying to find a way to run a process engine on GAE to no avail. So my last res

[google-appengine] Re: what this log means?

2013-11-01 Thread hansyin
Thank you very much! On Thursday, October 24, 2013 12:09:04 PM UTC-7, hansyin wrote: > > Hi, I'm new to here. thanks for help. > > Could anybody tell me what this log means? it succeeded or not? > > >1. 2013-10-24 11:30:05.437 /poller/hourly 200 18ms 0kb AppEngine-Google; >(+http://code

[google-appengine] Copy Job Status The error was: Fetch to http://xxxyyyzzz.appspot.com/_ah/remote_api failed with status 404

2013-11-01 Thread Raghav Rajagopalan
I am working in google app engine for the past 3 days. I am struck with a issue where i can not " Datastore Admin: Copy to Another App ". When I try to copy Entities, it give me this error " Copy Job Status ". There was a problem kicking off the jobs. The error was: Fetch to http :/ / xxx

[google-appengine] Not able to access an excel file saved in BlobStore

2013-11-01 Thread anuja bothra
Hi, I basically want to upload an excel file to blobstore and then parse the file using POI. I have uploaded the excel file to the blob store using the following .jsp code <% BlobstoreService blobstoreService = BlobstoreServiceFactory.getBlobstoreService(); %> " method="post" enctype=

[google-appengine] Not authorized to access instance: [my app id]appspot.com:[my sql instance]

2013-11-01 Thread jeff schulz
all of a sudden my app cant access my cloud database. *Not authorized to access instance: [my app id]appspot.com:[my sql instance]* instance settings for authorized applications is correct. correct application identifier is in my appeninge-web.xml. -- You received this message because you ar

[google-appengine] dev server global scope

2013-11-01 Thread Quint van den Muijsenberg
Hello, I hope someone can clarify this for me: Does the dev server cache the global python cache? Just like the production GAE does? I'm under the impression that it doesn't. thanks Quint -- You received this message because you are subscribed to the Google Groups "Google App Engine" group

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Brian Dorsey
Hello Tapir, I responded via gs-team. Let's continue this conversation there, so I can help with your specific project ids. Take care, -Brian On Fri, Nov 1, 2013 at 11:12 AM, Tapir wrote: > > > On Saturday, November 2, 2013 1:06:40 AM UTC+8, Brian Dorsey wrote: > >> >> >> On Friday, November

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
On Saturday, November 2, 2013 2:16:30 AM UTC+8, Tapir wrote: > > Ha Brian, > just received your email and notice you can googler. > sorry for the spelling mistakes. "you are a googler". :) > now, the page > https://cloud.google.com/console#/project/apps~youyards/storage shows "Please > *enab

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
Ha Brian, just received your email and notice you can googler. now, the page https://cloud.google.com/console#/project/apps~youyards/storage shows "Please *enable billing* to use all features.*Dismiss*" box with yellow background. Is it ok if I click the "enable billing" link? On Saturday, Novem

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
On Saturday, November 2, 2013 1:06:40 AM UTC+8, Brian Dorsey wrote: > > > > On Friday, November 1, 2013 2:49:13 AM UTC-7, Tapir wrote: >> >> >> >> On Friday, November 1, 2013 5:14:50 PM UTC+8, Amy Unruh wrote: >>> >>> Tapir, >>> >>> The cloud console lists not only your app engine apps, but all y

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Brian Dorsey
On Friday, November 1, 2013 2:49:13 AM UTC-7, Tapir wrote: > > > > On Friday, November 1, 2013 5:14:50 PM UTC+8, Amy Unruh wrote: >> >> Tapir, >> >> The cloud console lists not only your app engine apps, but all your Cloud >> projects, including projects where you'd enabled Compute Engine or oth

[google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
It seems my bucket custom domain designfiles.phyard.com is still ping-able. It is just I can't read it. Hope the datas are not lost and google can help me find them back. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from

[google-appengine] Re: what is future of GAE?

2013-11-01 Thread Cesium
42. Nice one! Just found my cassettes of the BBC radio production. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
On Friday, November 1, 2013 5:14:50 PM UTC+8, Amy Unruh wrote: > > Tapir, > > The cloud console lists not only your app engine apps, but all your Cloud > projects, including projects where you'd enabled Compute Engine or other > cloud services (e.g. Cloud Storage, BigQuery, Cloud SQL, etc.). >

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
On Friday, November 1, 2013 5:14:50 PM UTC+8, Amy Unruh wrote: > > Tapir, > > The cloud console lists not only your app engine apps, but all your Cloud > projects, including projects where you'd enabled Compute Engine or other > cloud services (e.g. Cloud Storage, BigQuery, Cloud SQL, etc.). >

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Amy Unruh
Tapir, The cloud console lists not only your app engine apps, but all your Cloud projects, including projects where you'd enabled Compute Engine or other cloud services (e.g. Cloud Storage, BigQuery, Cloud SQL, etc.). So that is why I suggested you just go systematically through that listing and s

[google-appengine] !!! Warning: DON'T remove your any Google Compute Engine project now!!!

2013-11-01 Thread Tapir
Doing this may remove your Cloud Storage data without any warnings. See this thread for detail: https://groups.google.com/forum/#!topic/google-appengine/YxsTLbi55JI -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this g

Re: [google-appengine] LIKE Query in NDB

2013-11-01 Thread Vijay Kumbhani
thanks On Wednesday, 30 October 2013 17:49:15 UTC+5:30, barryhunter wrote: > > In general* you can't. > > Instead have a look at > https://developers.google.com/appengine/docs/python/search/ > > > > > > > * You can emulate some LIKE queries, notably case-sensitive, prefix > queries (ie BINARY L

[google-appengine] use O auth 2.0 in gspread library ?

2013-11-01 Thread Vijay Kumbhani
gspread library : https://github.com/burnash/gspread give me, one examples -- 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...@g

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
On Friday, November 1, 2013 2:59:00 PM UTC+8, Amy Unruh wrote: > > Tapir, > > I think the best way to diagnose is to use the web interface: start from > your cloud console (cloud.google.com/console) and look at each of your > existing projects in turn. Find the one that, in its Cloud Storage (G

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
Is there a way to cancel removing my Compute Engine projects? -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to google-appengine+unsubscr...@googlegroups.com

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
One of the two deleted Compute Engine is the first my ever created Compute Engine project. After the removals, the Compute Engine project I mentioned above with project "another-project-id" becomes the exiting oldest created Compute Engine project. Will Compute Engine team connect my old existe

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
On Friday, November 1, 2013 2:59:00 PM UTC+8, Amy Unruh wrote: > > Tapir, > > I think the best way to diagnose is to use the web interface: start from > your cloud console (cloud.google.com/console) and look at each of your > existing projects in turn. Find the one that, in its Cloud Storage (G

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Tapir
When I click the "Google Cloud Storage Manager" link in the "Google Cloud Storage" page of the API Console, it jumps to another newly created Compute Engine project, https://cloud.google.com/console#/project/apps~another-project-id/storage, not the old app engine project I ever connected with t

Re: [google-appengine] Re: Is Google Cloud Storage Java API broken now?

2013-11-01 Thread Amy Unruh
Tapir, I think the best way to diagnose is to use the web interface: start from your cloud console (cloud.google.com/console) and look at each of your existing projects in turn. Find the one that, in its Cloud Storage (GCS) panel, lists the bucket that you're using for your app. See what's in tha