Re: [google-appengine] Property corrupt in the datastore

2014-03-12 Thread Vinny P
It's most likely not data corruption - most of the time this error is due to non-UTF8 data being saved to the datastore. You wrote that you're seeing this error within 2 different kinds: what data are those kinds storing? Is it possible that they're storing non-UTF8 characters? Can you try

Re: [google-appengine] Cursor Related Errors in Task

2014-03-12 Thread Vinny P
When you say you're getting a 202 error, is that a HTTP status code or the App Engine internal error code that you're receiving? Can you also post the stack trace and any exception message connected with the ApiDeadlineException? - -Vinny P Technology Media Advisor Chicago, IL

Re: [google-appengine] Cursor Related Errors in Task

2014-03-12 Thread Evan Ruff
Hey Vinnie, The 202 is the exit code from my process. I've attached the three major exceptions that I've been getting. 1. Mystery202LogMessage - This one seems to happen ~usually on the first run after a new deploy, but can pop up at other times. The entire doPost method has been wrapped in a

Re: [google-appengine] Cursor Related Errors in Task

2014-03-12 Thread Evan Ruff
Hey guys, I also seem to have found a couple more. 1. HeapOnWrite: Java heap space while waiting for outstanding writes in the GCSOutputChannel. My GCSOutputChannel is wrapped by a print writer. Every 100 records (~25k size) I'm calling waitForOutstandingWrites and then printWriter.flush.

[google-appengine] default bucket name in GCS

2014-03-12 Thread GAEfan
I migrated an older legacy app from blobstore to GCS, using these instructions: https://developers.google.com/appengine/docs/python/googlestorage/ So, I added a bucket using the GCS Developer Console. What was not properly explained is that, by following these instructions, you are not using

Re: [google-appengine] default bucket name in GCS

2014-03-12 Thread Pertti Kellomäki
+1. I am in the same boat (I think). Pertti On Wed, Mar 12, 2014 at 5:48 PM, GAEfan ken...@gmail.com wrote: I migrated an older legacy app from blobstore to GCS, using these instructions: https://developers.google.com/appengine/docs/python/googlestorage/ So, I added a bucket using the

Re: [google-appengine] Property corrupt in the datastore

2014-03-12 Thread Arthur Wiebe
Interestingly the 2 properties that the datastore viewer is saying is corrupt have not been used for some time. The one I referenced has not been in the code since Oct 09 2013 and the other is even older. So I find it strange that all of a sudden the datastore viewer starts complaining about it

[google-appengine] get_num_instances always raises InvalidVersionError

2014-03-12 Thread someone1
Hello All, I am trying to leverage this new API functionality but no matter what inputs I choose, the modules.get_num_instances function always raises an error. I know I have basic scaling setup for the module and version I'm trying to look this information up for (in the YAML file). Calls to

[google-appengine] Re: How stable is pull queue task tagging for arbitrary tags?

2014-03-12 Thread Alexis
I'm currently using the pull queue with tags, and have experienced TranscientError in the past. Thanks to support cases still being there I can go back in time with precise figures :) Here are my usage figures if it can help: Currently: Daily average 7-8 tasks/second enqueued over 2 tags,

[google-appengine] Re: How stable is pull queue task tagging for arbitrary tags?

2014-03-12 Thread Alexis
I forgot to mention - but you may realize if you do the math - the figures about when I split to 20 task queues were obtained while testing with traffic split, so it did not get the whole 1,800req/sec traffic but a subset of it. -- You received this message because you are subscribed to the

Re: [google-appengine] default bucket name in GCS

2014-03-12 Thread Stefano Ciccarelli
I have the same problem, the default bucket I created is billed by the Cloud Platform Console and seems to not belong to GAE. Il mercoledì 12 marzo 2014, GAEfan ken...@gmail.com ha scritto: I migrated an older legacy app from blobstore to GCS, using these instructions:

[google-appengine] Re: How stable is pull queue task tagging for arbitrary tags?

2014-03-12 Thread Kaan Soral
Thanks so much, the information is extremely useful I was unsure about the need for multiple pull queues, but it seems to be a must. I do use the method for regular queues, where the limits are clear On Wednesday, March 12, 2014 10:27:23 PM UTC+2, Alexis wrote: I forgot to mention - but you

[google-appengine] Google Apps Marketplace SDK - error appears when trying to select icon

2014-03-12 Thread Kaspars Upmanis
Hi, I was trying to create an app in the console and wanted to use the Google Apps Marketplace SDK service for it. When I tried to upload icons for my app, after pressing select button a popup appears and says Invalid credentials (missing or invalid oAuth token). How should I fix this error?

Re: [google-appengine] Re: urlfetch DeadlineExceededError

2014-03-12 Thread Stanislau Charniakou
Having DeadlineExceededError on GAE for url http://api.longurl.org/v2/ Appears to be the same thing, as it works fine on dev server and in the browser. Suggested workaround with IP didn't help, it's neither available by IP from GAE. четверг, 7 ноября 2013 г., 19:09:22 UTC-8 пользователь Larry

[google-appengine] Help - more than 100 URLMap entries

2014-03-12 Thread M. Hossein Amerkashi
Hello, I was using appengine-java-sdk-1.7.2 to deploy my application and all was going fine. Now, I have to upgrade to java. So I believe I have made the switch. However, when I try to upload, it prevents me from deployment because I get this message: * Java 6 applications are prevented from

[google-appengine] Securing JSESSIONID

2014-03-12 Thread CK Yap
Hi everyone, Does anyone know how to secure the JSESSIONID by adding SECURE and HTTP-ONLY to the JSESSIONID cookie for Java GAE please? Thank you. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To unsubscribe from this group and stop

Re: [google-appengine] Deplyement issue for Java 6

2014-03-12 Thread M. Hossein Amerkashi
For my case, its causing: *Found more than 100 URLMap entries in application configuration* On Thursday, February 27, 2014 9:11:31 AM UTC-5, Shilendra Sharma wrote: Yes!! Google Team already update you for this !. It's not big issue you change your java version for this !!! It will solve

[google-appengine] Re: When moving between HTTP and HTTPS, how to share authentication cookies (ACSID, SACSID)?

2014-03-12 Thread roshan
Hi, Can anyone throw some light on this matter please? I am struggling to know its answer too today. Regards, Roshan On Friday, 24 August 2012 10:58:22 UTC+5:30, Ben Alpert wrote: I'm attempting to set up my app so that certain pages can be served over HTTPS but most are served over HTTP:

[google-appengine] Is this a bug?

2014-03-12 Thread 김도연
I have models like this. import unittest from google.appengine.ext import testbed, ndb class Foo(ndb.Model): number = ndb.IntegerProperty(default=0) class Bar(ndb.Model): foo = ndb.StructuredProperty(Foo, default=Foo()) class TestFoo(unittest.TestCase): def setUp(self):

[google-appengine] BadStatusLine when run dev_appserver

2014-03-12 Thread Amaranth F
My helloworld.py is like this: def main(environ,start_response): response_body = 'The request method was %s' % environ['REQUEST_METHOD'] status = '200 OK' response_headers = [('Content-Type', 'text/plain'), ('Content-Length', str(len(response_body)))]

[google-appengine] Google App Engine / Cloud Storage Uploads for php broken in 1.9.0?

2014-03-12 Thread David Tyler
Has anyone else noticed a problem uploading files to GCS using the php libraries in 1.9.0? My production app has been on 1.8.9 for weeks, and today was automatically upgraded to 1.9.0. Ever since, I get a php error coming from Google's runtime: strpos(): Empty needle

[google-appengine] Google Apps Marketplace SDK - error appears when trying to select icon

2014-03-12 Thread Nhan Le
Hi, I was trying to create an app in the console and wanted to use the Google Apps Marketplace SDK service for it. When I tried to upload icons for my app, after pressing select button a popup appears and says Invalid credentials (missing or invalid oAuth token). How should I fix this error?

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

2014-03-12 Thread Sandeep Koduri
Actually this is the state since DEC 2012, I wonder 14 months is long enough for any kind of update. On Saturday, March 1, 2014 8:05:12 AM UTC+5:30, pdknsk wrote: Thanks for the update. Unfortunately it was pretty much the same message as 4 months ago. If it's not announced by June 26th this

[google-appengine] email dump

2014-03-12 Thread Josh Stratton
Is there an API call to get a dump of the current user's email or even for admins to get dumps for other users' emails? -- 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] Can't connect to https url from app engine?

2014-03-12 Thread bittransfer2000
Hi, I can't seem to connect to a url from app engine. The url looks like: https://myexamplesite.com:8443/echo?timestamp=now app engine always times out. But I can hit this same url with any browser just fine. The ssl cert is a trusted cert from godaddy. Also, if I change from https to

[google-appengine] How to do Normalization in Cloud Sql

2014-03-12 Thread anupam srivastava
Hi All, Pls share the data who has worked Normalization in Cloud sql and let us know are there any limitations. Thanks in Advance!! -- 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: Unable to deploy

2014-03-12 Thread John Conti
By way of follow up: No I wasn't able to resolve the issue. After spending some time with the author of the library I was using, he decided to stop supporting AppEngine all together because debugging is so hard without support. Google suggests using Stack Overflow, which isn't much of an

[google-appengine] Re: Problems Deploying App - 500 Internal server Error

2014-03-12 Thread mayu0705
i got an error while deploying the project to google app engine as Error: Server ErrorThe server encountered an error and could not complete your request. Please try again in 30 seconds. where on eclipse it says deployment successfully. please give me solution -- You

[google-appengine] https://appengine.google.com is DOWN? Error 500

2014-03-12 Thread Gerardo Lopez
Hello, I was tried upload my app to google engine, but I have the problem that I want to access the https://appengine.google.com , but i found the following message: Server error 500. Can you help me, please? -- You received this message because you are subscribed to the Google Groups

[google-appengine] Re: Unable to deploy

2014-03-12 Thread John Conti
No I wasn't able to resolve the issue. After spending some time with the author of the library I was using, he decided to stop supporting AppEngine all together because debugging is so hard without support. Google suggests using Stack Overflow. AppEngine *is* a great product. But as a

[google-appengine] issue while accessing appengine.google.com

2014-03-12 Thread sebastien . blind
hello All, getting the following error when access appengine.google.com with or without being signed - anyone experiencing the same? Thanks in advance, Sebastien PS: - *mdb.gfe-dev...@google.com* Server Error A server error has occurred. Return to Applications screen »

[google-appengine] The API call mail.Send() was explicitly cancelled.

2014-03-12 Thread Jai Gupta
Hi All, While sending emails from Google app engine to Salesforce, I am receiving The API call mail.Send() was explicitly cancelled. error message. However, I am using Task queues so in next retries this error gets resolved. But I am just curious to know why these errors occur and what if it

[google-appengine] 500 Server Error on https://appengine.google.com

2014-03-12 Thread Gerardo Lopez
500 Server Error on https://appengine.google.com. Can somebody help me? -- 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] Null Pointer exception in Transport.send()

2014-03-12 Thread Jai Gupta
Hi All, I am trying to send some text from Google App Engine to Salesforce but it throws an error Null pointer exception in Transport.send(). When I debug the message which is being passed in Transport.send() then I see that it is not null. Error is : com.appirio.SendEmail.SendEmailServlet

[google-appengine] Google developers console

2014-03-12 Thread Heikki Liukkonen
I've deleted apps from the new cloud panelhttps://cloud.google.com/console/project and it said that those will be deleted after 7 days. It is already *10* days pass, but deletions are still pending. How long it will takes? I made one mistake and now i can't use my unique ID -- You received

[google-appengine] DataStore Read Operations growing up

2014-03-12 Thread Carlos Montero Padilla
I have a web application in App engine with Java and a Datastore with information that need the web app. When received a request page the rate of Datastore Read Operations resource grow up 6%. If the limit is 0.05 Millons Op, the 6% are 3000 read operations, but my app only access to 20

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

2014-03-12 Thread Mattan Furst
I have a question regarding performance and saving non-indexed data in the datastore. I have a situation where I have an entity with several tidbits of information that I need to save (currently around 20-30 columns each with a few bytes of information worth). Most of those tidbits do not

[google-appengine] sample codes from developers.google.com are just too out dated!!!!!

2014-03-12 Thread 이백년
I am kind of new for app engine. Studying about 3 weeks of time. First, I thoughts if I follow samples and guides from developers.google.com and I should be good. However, I have got so many outdated information from guides and sample codes, I eventually spend most of my time to search

[google-appengine] App engine not request https

2014-03-12 Thread Geraldo Cerqueira Silva
I cant make request using https. I have tried use urllib, urllib2, urllib3, requests e fetch, but nothing works. Please help me!!! -- 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] Datanucleus enhancement fails with Error: Could not find or load main class com.google.appengine.tools.enhancer.Enhance

2014-03-12 Thread DeadEternally
I installed the Google Plugin for Eclipse and created a new Google App Engine project just as decribed in https://developers.google.com/appengine/docs/java/tools/eclipse. I'm getting the error Error: Could not find or load main class com.google.appengine.tools.enhancer.Enhance. I'm using

[google-appengine] application delete

2014-03-12 Thread michelbenay
I deleted an application actualy disappeared in dashbord but application Id already in use!!! when i try to create with this 'old' name -- 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] Spring Hibernate Configuration for Google Cloud SQL (to deploy in GAE)

2014-03-12 Thread Sarika S
I have a web application created with spring, hibernate, maven and using google cloud sql. I cannt successfully deploy it in google app engine. Can anyone help me. What is the correct spring datasource bean settings for connecting to cloud sql? -- You received this message because you are

[google-appengine] No module named google.appengine.api?

2014-03-12 Thread Mark Susol
from google.appengine.api import app_identity ImportError: No module named google.appengine.api Trying to evaluate a python script for a prototype, but stumped by this simple error. -- You received this message because you are subscribed to the Google Groups Google App Engine group. To

[google-appengine] Adding domain to google app engine

2014-03-12 Thread Matthew Cohen
I'm writing a little app on Google App Engine. I would like to point a domain I own to this application. I have owned the domain for years and it's been parked on another host. I think I am missing something,though. When I go to add the domain to my google app engine account, it forces me

[google-appengine] parse xml file stored in blobstore

2014-03-12 Thread user345
I would like to find out how to parse a xml file that has been uploaded to the blobstore. Below is the code that I have. Can any one recommend a solution to this? At the moment my project uploads the xml file and serves it through a serve.java file (file Upload.java): package uploaddata;

[google-appengine] reuse existed master/slave datastore app name

2014-03-12 Thread 賣飛機
Hi all I have an old app at A. http://sailplanetw-website.appspot.com/ appspot.com, and it is created on master/slave datastore type. I found that it is becoming read-only recently. Many reference data recommend me transfering it to HRD type. But It is like creating a new app such as

[google-appengine] Re: Error in app.yaml file

2014-03-12 Thread Sharon Schwartz
On Monday, December 30, 2013 7:09:48 AM UTC-6, Vimarsh Chaturvedi wrote: I'm basically a noob. I'm trying to run Google Appengine in Ubuntu. It keeps showing, there is an error in line 7, column 9; this is what I typed in the app.yaml file is application:HelloUdacity version:1

[google-appengine] App Engine Database

2014-03-12 Thread Austin Deuerling
I was recently contacted to develop an app that would poll questions off of a database stored outside the app. I was pointed here and told this would be the easiest way to store and poll from a database, but I am lost on where to begin, can someone help with this issue? -- You received this

[google-appengine] Invoking a REST service via Google App Engine

2014-03-12 Thread pritiman . mwsoa
Hi All, I am a newbie to GAE. Need a quick help. I have created a REST based service locally using JERSEY. Tried invoking and consuming the REST services locally in the DEV GAE Server(localhost) Couple of issues I am facing : - Timeout Issue ('had to tweak the query temporarily) - Any

[google-appengine] Glob function not working (PHP)

2014-03-12 Thread danpros
Hello all, Yesterday I tried to test my app on App Engine, in development server all works fine but when I deploy it to App Engine it can not work properly, the glob function is not working. Example code: $_cache = glob('content/*/blog/*.md', GLOB_NOSORT); Thanks, -- You received this

[google-appengine] GAE/J Problem persisting updated jpa entities

2014-03-12 Thread Jeremy Craney
Is anyone else experiencing some trouble when trying to persist or merge an updated entity back into the datastore using the cloud endpoint update method? Inserting a new entity works fine but when I try to update an entity though the gpe generated cloud endpoint update method, the entity

[google-appengine] Recovering an old app? How to tell which account I used for a certian .appspot.com

2014-03-12 Thread Ozzy Pyro
Hi, so several years ago, probably 3 or 4 at least, I made an app. I can't get into that account anymore, and I am certain it is on this account because the app isn't hiding on any of my other ones. I just want to take down the app located at ozzy-new-playground.appspot.com because I have made

[google-appengine] Re: 1.7.5 to 1.8.9 NoSuchMethodError ?

2014-03-12 Thread Vadim Yarovoy
I am having the same problem as Pedro, upgraded to 1.9.0 GAE and my test keeps showing the makeImmutable issue. I posted a bug on GAE site: https://code.google.com/p/googleappengine/issues/detail?id=10673thanks=10673ts=1394343912. Does anyone have a solution? Thanks, Vadim On Tuesday,

[google-appengine] getObjectByID ended abruptly...no exception; nothing

2014-03-12 Thread jwu
I have a method (see screenshot) which invokes getObjectById() method from the Transaction Manager. I put the code on debug mode and noticed that immediately after invoking the getObjectById method, it jumps to the finally statement. There was no exception or error reported. Had anyone

[google-appengine] Help! App Custom Domains Failing - Site is down.

2014-03-12 Thread Jay Kyburz
Just got up to discover that my custom domains are not working this morning. My site is effectively down. When visiting my apps on their custom domain they all are simply redirected to the google search page. (I can still access the site via the appspot url, but my users don't know it. )

[google-appengine] PROBLEMA AL ABRIR CON COLEGAMENTO LINK

2014-03-12 Thread ARONA
Hola a todos tengo un problemaso y no se si alguien me podria ayudar...sucede que me condividen mapas desde el computador enviandome tramite gmail el link del mapa que debo trabajar...yo tengo en mi tablet la aplicacion de Google App Engine y tambien Google maps pero cuando deseo abrir el link

[google-appengine] 500 Server Error

2014-03-12 Thread Sharon Schwartz
When I try to execute my app I get the Server error to try again in 30 minutes. 30 minutes doesn't help, 1, 2, or however many days doesn't help. Can someone tell me what I am doing wrong? This is the log contents: 2014-03-10 13:37:17 Running command: ['C:\\Program Files

Re: [google-appengine] How to enable https/ssl in the dev server ?

2014-03-12 Thread Mark Piekarz
Hi Ikai, This thread seems to have not been alive for around 2 years but I'll add my question/use case.. I'm having the same issues. My use case is that I'm using Drive Realtime API to talk to Drive in order to collaborate in my app - however after accepting the popup that requests permission

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

2014-03-12 Thread Ryan W
I am also experiencing this on my custom domain, through Victoria University of Wellington, who I think are their own ISP. On Wednesday, March 12, 2014 9:48:43 AM UTC+13, GregF wrote: We have several custom domains (e.g. www.schoolinterviews.co.nz) mapped to our application. Starting this

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

2014-03-12 Thread Phil Bingley
I have a similar problem - well, two problems now as I have grumpy clients as well as no sites. Phil On Wednesday, March 12, 2014 9:48:43 AM UTC+13, GregF wrote: We have several custom domains (e.g. www.schoolinterviews.co.nz) mapped to our application. Starting this morning, many users

[google-appengine] Re: JPA Relationship manytoone saving problem

2014-03-12 Thread Bryan Paijit
Did you ever get this resolved? I'm having the same problem. On Thursday, July 25, 2013 5:54:21 AM UTC-7, Kaushal Prajapati wrote: *Exception persist method Save Attempt to assign child with key Role(19003) to parent with key User(no-id-yet). Parent keys are immutableException

[google-appengine] Help deleting or editing app on an account I can't get into

2014-03-12 Thread Ozzy Pyro
I made an app oh probably 4+ years ago by now, and now I want it gone or for the address it is at to redirect to a new page. I made a new one now that I have a better understanding of HTML. The app I want removed or for the address to redirect is located at ozzy-new-playground.appspot.com and I

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

2014-03-12 Thread Jay Kyburz
haha. I wonder if code.google.com is app engine. its 404ing for me. On Wednesday, 12 March 2014 08:07:32 UTC+11, GregF wrote: I've created a production issue here: https://code.google.com/p/googleappengine/issues/detail?id=10687 - please star! On Wednesday, 12 March 2014 09:48:43

[google-appengine] API config update request failed, unable to reach API server.

2014-03-12 Thread Валерий Гайдай
Hi. I constantly receive such admin logs when deploying applications to google app engine. Also I receive these logs in console java.lang.RuntimeException: Endpoints configuration not updated. Unable to update app: Endpoints configuration not updated. Please see the logs

Re: [google-appengine] Re: Unable to deploy due to 500 server error

2014-03-12 Thread arun eswara
When i Try to deploy, i get 2014-03-12 10:08:23 Running command: ['C:\\Python2.7\\python.exe', '-u', 'C:\\Program Files (x86)\\Google\\google_appengine\\appcfg.py', '--no_cookies', u'--email=arun1is1c...@gmail.com', '--passin', '--server=maketaketest.appspot.com', 'update',

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

2014-03-12 Thread Ryan W
I am also experiencing this on my custom domain, through Victoria University of Wellington who are their own ISP On Wednesday, March 12, 2014 9:48:43 AM UTC+13, GregF wrote: We have several custom domains (e.g. www.schoolinterviews.co.nz) mapped to our application. Starting this morning,