[google-appengine] Moving blog from wordpress to blogger

2012-05-16 Thread Sus
I'm trying to move my blog from wordpress to blogger. I found a site 
in which one should be able to convert the wordpress file exported from 
wordpress into a file that blogger understands. However this is not 
currently working and the site (wordpress2blogger.appspot.com) gives me 
only an error saying

*Error: Server Error**The server encountered an error and could not 
complete your request.*

*If the problem persists, please 
reporthttp://code.google.com/appengine/community.html your 
problem and mention this error message and the query that caused it.*

Am I doing something wrong or is the site down or something? I really would 
like to move my blog from wordpress to blogger but I do not want to leave 
my old posts behind. Please help!

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/QD9yAJoABZMJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: The Schedule Format of cron.xml

2012-05-16 Thread Ian Marshall
Your syntax problem may lie within your schedule tag (mix of month
and every, and unwanted final comma):

  schedule1,15, of month every 2 hours/schedule

Your description tag and posting text do not match the every 2 hours
in your schedule tag. Assuming that you want to run every 30
minutes...

Option 1: try

  schedule1,15 of month 00:00/schedule

and at the end of your scheduled task enqueue a task to execute 30
minutes later, if this would be within the same day.


Option 2: try

  schedule1,15 of month 00:00/schedule
  schedule1,15 of month 00:30/schedule
  schedule1,15 of month 01:00/schedule
  schedule1,15 of month 01:30/schedule
  ...
  schedule1,15 of month 23:30/schedule

This is more robust than chaining enqueued tasks kicked off by a
scheduled task, but would be more cumbersome to code, since you will
need a cron entry for each schedule.


Is this any help?


On May 15, 12:20 pm, Larry kuei...@gmail.com wrote:
 Hello All,
      Is it possible to execute my job as following:

 ?xml version=1.0 encoding=UTF-8?
 cronentries
   cron
     url/mytask/url
     descriptionExecute my task, every 30 minutes of first and15th of
 month  /description
     schedule1,15, of month every 2 hours/schedule
     timezoneAmerica/New_York/timezone
   /cron
 /cronentries

 This syntax is wrong and fail to deploy to GAE.
 I tested another solution. Execute mytask every 30 minutes. Execute the
 real task only the date is 1 and 15.
 I check the dashboard. The Frontend Instance Hours increase dramatically.

 Any thoughts?
 Larry

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Moving blog from wordpress to blogger

2012-05-16 Thread Barry Hunter
Yes, it appears there was an issue with wordpress2blogger.appspot.com
at the time.

Seems to be accessible now.

On Wed, May 16, 2012 at 8:35 AM, Sus sarian...@hotmail.com wrote:
 I'm trying to move my blog from wordpress to blogger. I found a site
 in which one should be able to convert the wordpress file exported from
 wordpress into a file that blogger understands. However this is not
 currently working and the site (wordpress2blogger.appspot.com) gives me only
 an error saying

 Error: Server Error

 The server encountered an error and could not complete your request.

 If the problem persists, please report your problem and mention this error
 message and the query that caused it.

 Am I doing something wrong or is the site down or something? I really would
 like to move my blog from wordpress to blogger but I do not want to leave my
 old posts behind. Please help!

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-appengine/-/QD9yAJoABZMJ.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] java.net.SocketTimeoutException for URLFetch

2012-05-16 Thread jinju
I am trying to connect two app engine applications. Using HTTPResponse
com.google.appengine.api.urlfetch.URLFetchService.fetch(URL url) , i
connect a crone job running on another application.But it always shows
'java.net.SocketTimeoutException: Timeout while fetching'. The same
error exception is generating when i used  java.net.URL.URL(String
spec).openStream().
But the executed crone job's log display in its console with Status of
200.
Can anyone suggest a solution.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Indexes stuck in Buildling state -- Cannot vacuum

2012-05-16 Thread Ofer
2 indexes in my app (breadbrowser) are stuck in Buildling state and I
cannot vacuum them.
Can anybody help, please?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Will full-text search index be limited in size?

2012-05-16 Thread Daniel Florey
Are there any limitations in index size once the fts is out of experimental 
state?

Thanks,
Daniel

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/l0_tAdpeMaEJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Indexes stuck in Buildling state -- Cannot vacuum

2012-05-16 Thread Ofer
resolved

On Wednesday, 16 May 2012 20:22:16 UTC+8, Ofer wrote:

 2 indexes in my app (breadbrowser) are stuck in Buildling state and I 
 cannot vacuum them. 
 Can anybody help, please?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/DHAg8Ff-5MkJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Error: The server encountered an error and could not complete your request.

2012-05-16 Thread Ronaldo Ronie Nascimento


I get the error above, in my aplication, this happens when I map a filter 
to /* in my web.xml, but the filter works fine at my machine. How I can 
solve this?
Error: Server ErrorThe server encountered an error and could not complete 
your request.

If the problem persists, please 
reporthttp://code.google.com/appengine/community.html your 
problem and mention this error message and the query that caused it.


https://lh4.googleusercontent.com/-JAdt8BeHCMY/T7O7g9sl-lI/Aq0/qTvJXn5LjFs/s1600/error.png

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/1--hQWsIL18J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Error: The server encountered an error and could not complete your request.

2012-05-16 Thread Simon Knott
Have you checked the server logs through the admin console?

On Wednesday, 16 May 2012 15:44:19 UTC+1, Ronaldo Ronie Nascimento wrote:

 I get the error above, in my aplication, this happens when I map a filter 
 to /* in my web.xml, but the filter works fine at my machine. How I can 
 solve this?
 Error: Server ErrorThe server encountered an error and could not complete 
 your request.

 If the problem persists, please 
 reporthttp://code.google.com/appengine/community.html your 
 problem and mention this error message and the query that caused it.



 https://lh4.googleusercontent.com/-JAdt8BeHCMY/T7O7g9sl-lI/Aq0/qTvJXn5LjFs/s1600/error.png



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/kjSxJmChvp4J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Scheduler/billing changes in 1.6.5? My daily cost went from $5 to $35.

2012-05-16 Thread Robert Schuppenies
On Tue May 15 14:49:31 GMT-700 2012, Per per.fragem...@gmail.com wrote:

 Oh my Goodness! You're right. I never noticed the new built-in version.
 Plus I never realised there were failed backup-tasks that were retrying all
 over again (for 20 days! 500 retries!) to do a backup. This meant two
 instances were permanently doing stuff. Also this explains the unusually
 high number of datastore operations.

 Stupid me! But stupid GAE user interface too. How about adding a few words
 to the backup initiated confirmation dialog?  Like these tasks will run
 in a built-in version, so you can track progress and billing over there?
 Something along the lines. There's plenty of whitespace on that screen.


You are right, there should be something better. Can you file a bug for
this?:
http://code.google.com/p/googleappengine/issues/entry?template=Other%20defect

thanks!



 Anyway, thanks Takashi for pointing me in the right direction!

 Per


 On Tuesday, May 15, 2012 5:33:47 PM UTC+2, Takashi Matsuo (Google) wrote:


 Hi Per,

 Thanks for sending the details. First thing comes to mind is that the
 culprit might be instances on a version 'ah-builtin-python-bundle'.
 This version is currently dedicated to the 'Datastore Admin' feature. I
 think you are running some task like backup/copy/deletion in 'Datastore
 Admin', right?

 I hope it could explain the situation you are experiencing right
 now. Please let me know if that isn't the case.

 Thanks,

 -- Takashi

 On Tue, May 15, 2012 at 7:06 AM, Per per.fragem...@gmail.com wrote:

 https://lh3.googleusercontent.com/-qa-cjA-cUbM/T7GBSShwGrI/ADY/OYljQYgcczc/s1600/changed-2-weeks-ago.jpg


 Hi Takashi,

 I waited with my response because I didn't want to jump to conclusions.
 Yes, I have been experimenting with some settings every now and then,
 limiting instances, playing with the pending sliders etc. But all it did
 was change how quickly instances were created or collected (while always
 increasing latency). It didn't change how the billed instances were
 calculated.


 Above is the chart of my applications' instances for the past month. (The
 editor didn't allow me to place it at the right location...) It's rather
 easy to spot when things changed. We used to get billed for roughly one
 instance on average. Yes, we did have more than one running, but it was
 (and is!) always one instances that handles 95% to 99% of the load. So it
 seemed only just that Google would only charge for the main instances. I
 never asked for an instance that just sits there, but I didn't mind it
 while it was free :)


 So now being charged for two or three instances, when only one is really
 doing anything, seems like a major change that should be documented. Okay,
 maybe it's just our application, but our pricing has increased steeply. I
 just posted another message about the frontend hour calculation. Both
 issues combined seem to have led to a pricing increase from $5 to $10
 before, to now $30 to $50. Our request per second have increased
 moderately, we may have made some requests slower, we might have slightly
 different usage patterns. But I cannot see a reason for a price increase
 this steep.

 Any help or insight would be appreciated. Our app ID is
 small-improvements-hrd

 Kind regards,
 Per




 On Friday, April 27, 2012 7:02:26 AM UTC+2, Takashi Matsuo (Google) wrote:

 On Fri, Apr 27, 2012 at 10:16 AM, Per per.fragem...@gmail.com wrote:
  Hi team,
 
  previously, the scheduler used to spin up 3 instances for our
  application, only used 1 out of the 3, but at least we didn't have to
  pay for the unused instances. There was always a big gap between total
  instances and billed instances.

 Wasn't it because that you set Max Idle Instances at that time?
 If you set Max Idle Instances to Automatic, the total instances and
 billed instances should be the same.

 
  However, as of yesterday, the scheduler continues to spin up 3
  instances on average, but we have to pay for all of them. We're at
  maybe 1 request per second on average, and it's all handled just fine
  by one instance. We're on F4, so having to pay for 2 mostly unused
  instances hurts.
 
 
  Since this seems to coincide with the 1.6.5 release, I'm tempted to
  think that there's something changed in the background, and it would
  be great to learn more about the new suggested way.
 
  When we tried to limit idle instances last time, all we got was
  instance churn and bad latency. So we're on automatic/automatic these
  days, and I'd prefer not to have to experiment again. Some advice
  would be great.

 Again, I'm wondering when you tried to limit the idle instances.
 Generally speaking, you can not get everything. If you want a better
 performance, you'll need to pay more, and vice versa.

 However, if you're really certain that the behavior of our scheduler
 has significantly changed, please let me know your app-id and detailed
 explanation(it can be off-list), so I can look into it further.

 
  

Re: [google-appengine] import_string() failed for 'webapp2_extras.appengine.auth.models.User'.

2012-05-16 Thread Johan Euphrosine
Answered on Stack Overflow:
http://stackoverflow.com/a/10621914/656408

On Wed, May 16, 2012 at 6:43 AM, Prakhar Srivastav prakhar1...@gmail.comwrote:

 Hi

 I've been trying to use webapp2_extras auth and sessions modules in my
 application. I have the application running fine on my machine but it gives
 an error when I run it on GAE. This is the error I get:
 import_string() failed for 'webapp2_extras.appengine.auth.models.User'.
 Possible reasons are: - missing __init__.py in a package; - package or
 module

 How can I resolve this? Why is it running fine on my machine and not on
 GAE. Is there a package missing? Isn't the User model bundled with
 webapp2_extras.auth ?

 Same question on StackOverflow:
 http://stackoverflow.com/questions/10606843/import-error-for-user-modehttp://stackoverflow.com/questions/10606843/import-error-for-user-model

  Thanks

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-appengine/-/6onMKoV5a74J.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




-- 
Johan Euphrosine (proppy)
Developer Programs Engineer
Google Developer Relations

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Memcache problem on a production application

2012-05-16 Thread Mathieu Clavel
Hello,

My production application is currently having memcache problem.
Nothing is visible in the global appengine system status 
: https://code.google.com/status/appengine/

Error is :

Caused by: com.google.appengine.api.memcache.MemcacheServiceException: Memcache 
put: Error setting single item (...)


Nothing is working : Jasper also has error :

org.apache.jasper.runtime.JspFactoryImpl internalGetPageContext: Exception 
initializing page context
com.google.appengine.api.memcache.MemcacheServiceException: Memcache put: Error 
setting single item (_ahsXuelLhc5ClPxy8Dra2vPUQ)


My application name is oav-agz.


Regards,


Mathieu

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/wnw0n_KYeyEJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Absolutely newcomer wanting to know if this or google app script is what i need.

2012-05-16 Thread anthell
In short, im thinking of changing how we do business by using cloud 
services to fix our semi manual working line.

We need an app something in the line of this.


https://lh6.googleusercontent.com/-GR2iMo394-E/T7PN-kKU8pI/AAM/wblj6a5kx-g/s1600/24a.png















As you can see, its a pretty simple app that all it needs to do is to 
output what each processing line outputs and stores it in 2 databases. 
One is individual and one is main. Of course stuffs gets a little more 
complicated once we start introducing :

1. daily quarries (enables us to actually access the production of one 
specific day)
2. product quarries
3. barcoding each completed product (not sure if java / phyton can be 
linked with our barcode reader)

The idea is that each app will be password protected for each production 
line and only the admin account can access the main database to overview 
the entire production.

The reason why we want it to be in the form of cloud computing is the ease 
of access of our database wherever we have internet access.

Whether i should use app engine or app scripts, any suggestions as to how i 
shall start doing this?
I have very limited knowledge of programming so im assuming im going to 
hire a programmer to do is, but is there anything special he has to know to 
be able to code it using app engine / app script?

Thank you for reading this and helping me


BTW, i am not sure if im allowed to ask here, but is anyone selling 
services here such as selling apps ?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/9YeHl8E9-iMJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: 1.6.6 Pre-release SDKs available

2012-05-16 Thread Max Ross (Google)
It looks like you're trying to use the new appstats library in production 
but we haven't updated our production systems yet. The new appstats 
functionality should work fine when running locally right now.

Thanks,
Max

On Tuesday, 15 May 2012 13:49:34 UTC-7, Savaş L. wrote:

 on java it produce error, at least on my side, removing appstats 
 filter solves error 

 Error for /_ah/queue/__deferred__ 
 java.lang.NoSuchMethodError: 
 com.google.appengine.tools.appstats.StatsProtos 
 $IndividualRpcStatsProto.hasCallCostMicrodollars()Z 
 at 
 com.google.appengine.tools.appstats.MemcacheWriter.commit(MemcacheWriter.java:
  

 157) 
 at 
 com.google.appengine.tools.appstats.AppstatsFilter.doFilter(AppstatsFilter.java:
  

 151) 
 at org.mortbay.jetty.servlet.ServletHandler 
 $CachedChain.doFilter(ServletHandler.java:1157) 
 at 
 com.google.apphosting.utils.servlet.ParseBlobUploadFilter.doFilter(ParseBlobUploadFilter.java:
  

 102) 
 at org.mortbay.jetty.servlet.ServletHandler 
 $CachedChain.doFilter(ServletHandler.java:1157) 
 at 
 com.google.apphosting.runtime.jetty.SaveSessionFilter.doFilter(SaveSessionFilter.java:
  

 35) 
 at org.mortbay.jetty.servlet.ServletHandler 
 $CachedChain.doFilter(ServletHandler.java:1157) 
 at 
 com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(TransactionCleanupFilter.java:
  

 43) 
 at org.mortbay.jetty.servlet.ServletHandler 
 $CachedChain.doFilter(ServletHandler.java:1157) 
 at 
 org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java: 
 388) 
 at 
 org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java: 
 216) 
 at 
 org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java: 
 182) 
 at 
 org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java: 
 765) 
 at 
 org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java: 
 418) 
 at 
 com.google.apphosting.runtime.jetty.AppVersionHandlerMap.handle(AppVersionHandlerMap.java:
  

 249) 
 at 
 org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java: 
 152) 
 at org.mortbay.jetty.Server.handle(Server.java:326) 
 at 
 org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java: 
 542) 
 at org.mortbay.jetty.HttpConnection 
 $RequestHandler.headerComplete(HttpConnection.java:923) 
 at 
 com.google.apphosting.runtime.jetty.RpcRequestParser.parseAvailable(RpcRequestParser.java:
  

 76) 
 at 
 org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404) 
 at 
 com.google.apphosting.runtime.jetty.JettyServletEngineAdapter.serviceRequest(JettyServletEngineAdapter.java:
  

 135) 
 at com.google.apphosting.runtime.JavaRuntime 
 $RequestRunnable.run(JavaRuntime.java:446) 
 at com.google.tracing.TraceContext 
 $TraceContextRunnable.runInContext(TraceContext.java:449) 
 at com.google.tracing.TraceContext$TraceContextRunnable 
 $1.run(TraceContext.java:455) 
 at com.google.tracing.TraceContext.runInContext(TraceContext.java: 
 695) 
 at com.google.tracing.TraceContext 
 $AbstractTraceContextCallback.runInInheritedContextNoUnref(TraceContext.java: 

 333) 
 at com.google.tracing.TraceContext 
 $AbstractTraceContextCallback.runInInheritedContext(TraceContext.java: 
 325) 
 at com.google.tracing.TraceContext 
 $TraceContextRunnable.run(TraceContext.java:453) 
 at com.google.apphosting.runtime.ThreadGroupPool 
 $PoolEntry.run(ThreadGroupPool.java:251) 
 at java.lang.Thread.run(Thread.java:679) 





 On May 15, 9:09 pm, Marzia Niccolai marce+appeng...@google.com 
 wrote: 
  Hi, 
  
  The pre-release SDKs for 1.6.6 are available. You can download them 
 here: 
  
  Python:
 http://code.google.com/p/googleappengine/downloads/detail?name=google... 
  Java:
 http://code.google.com/p/googleappengine/downloads/detail?name=appeng... 
  
  Java Version 1.6.6 
  === 
  - On May 8, 2012 we released an experimental Search API. 
  
  http://googleappengine.blogspot.com/2012/05/looking-for-search-find-i... 

  - App creation for apps using the Master/Slave datastore is now 
 restricted 
  to 
only those users who already own a Master/Slave app. 
  - Apps with billing enabled are now able to configure up to 100 cron 
 jobs. 
  - Admin Console can no longer be included in an iframe.  To prevent 
clickjacking attacks on the Admin Console, we are now setting 
X-Frame-Options: SAMEORIGIN.  To read more about clickjacking, please 
  read: 
   https://www.owasp.org/index.php/Clickjacking. 
  - The datastore now supports embedding entities as properties of other 
  entities. 
  - The Admin Console will now periodically prompt administrators to take 
 an 
optional App Engine satisfaction survey. 
  - We have released the full MapReduce framework as experimental. 
  - Appstats now contains 

[google-appengine] EMERGENCY: Entity serialization broke yesterday

2012-05-16 Thread Jeff Schnitzer
A lot of Objectify users are reporting an NPE with a stack trace that
looks like this:

java.lang.NullPointerException
at 
com.google.appengine.api.datastore.PropertyContainer.getProperties(PropertyContainer.java:48)
at com.googlecode.objectify.impl.Transmog.load(Transmog.java:336)
...more lines that don't matter

This is caused by a call to Entity.getProperties() on an Entity object
that was deserialized from memcache.  Did something break in Entity
serialization?  This class PropertyContainer does not exist in the
published gae-java-sdk source.

The temporary fix is to disable @Cached... but this obviously a major
problem and a lot of applications are suffering right now.  Please
help.

Jeff

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Absolutely newcomer wanting to know if this or google app script is what i need.

2012-05-16 Thread stevep
Hoestly, I can't tell what you are really planning here. Just a
generic plug for GAE as a small/medium business solution. Really
terrific fit in many ways many business needs. (I would exclude
critical transactional systems from this unless you hire someone like
Robert K.) -stevep

On May 16, 9:09 am, anthell anthony...@gmail.com wrote:
 In short, im thinking of changing how we do business by using cloud
 services to fix our semi manual working line.

 We need an app something in the line of this.

 https://lh6.googleusercontent.com/-GR2iMo394-E/T7PN-kKU8pI/AA...

 As you can see, its a pretty simple app that all it needs to do is to
 output what each processing line outputs and stores it in 2 databases.
 One is individual and one is main. Of course stuffs gets a little more
 complicated once we start introducing :

 1. daily quarries (enables us to actually access the production of one
 specific day)
 2. product quarries
 3. barcoding each completed product (not sure if java / phyton can be
 linked with our barcode reader)

 The idea is that each app will be password protected for each production
 line and only the admin account can access the main database to overview
 the entire production.

 The reason why we want it to be in the form of cloud computing is the ease
 of access of our database wherever we have internet access.

 Whether i should use app engine or app scripts, any suggestions as to how i
 shall start doing this?
 I have very limited knowledge of programming so im assuming im going to
 hire a programmer to do is, but is there anything special he has to know to
 be able to code it using app engine / app script?

 Thank you for reading this and helping me

 BTW, i am not sure if im allowed to ask here, but is anyone selling
 services here such as selling apps ?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Memcache problem on a production application

2012-05-16 Thread Mathieu Clavel
Memcache is now working as expected.
Problem was from 16h to 18h (UTC+2)

Mathieu

Le mercredi 16 mai 2012 17:49:45 UTC+2, Mathieu Clavel a écrit :

 Hello,

 My production application is currently having memcache problem.
 Nothing is visible in the global appengine system status : 
 https://code.google.com/status/appengine/

 Error is :

 Caused by: com.google.appengine.api.memcache.MemcacheServiceException: 
 Memcache put: Error setting single item (...)


 Nothing is working : Jasper also has error :

 org.apache.jasper.runtime.JspFactoryImpl internalGetPageContext: Exception 
 initializing page context
 com.google.appengine.api.memcache.MemcacheServiceException: Memcache put: 
 Error setting single item (_ahsXuelLhc5ClPxy8Dra2vPUQ)


 My application name is oav-agz.


 Regards,


 Mathieu



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/EqN6glz5EmoJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] EMERGENCY: Entity serialization broke yesterday

2012-05-16 Thread Chris Ramsdale
Hey Jeff,

We're looking into this and will follow-up as soon as we have more info.

-- Chris

On Wed, May 16, 2012 at 9:57 AM, Jeff Schnitzer j...@infohazard.org wrote:

 A lot of Objectify users are reporting an NPE with a stack trace that
 looks like this:

 java.lang.NullPointerException
at
 com.google.appengine.api.datastore.PropertyContainer.getProperties(PropertyContainer.java:48)
at com.googlecode.objectify.impl.Transmog.load(Transmog.java:336)
...more lines that don't matter

 This is caused by a call to Entity.getProperties() on an Entity object
 that was deserialized from memcache.  Did something break in Entity
 serialization?  This class PropertyContainer does not exist in the
 published gae-java-sdk source.

 The temporary fix is to disable @Cached... but this obviously a major
 problem and a lot of applications are suffering right now.  Please
 help.

 Jeff

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.



-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: lost access to appengine projects

2012-05-16 Thread Chris Snyder
I realize I'm not paying for support on this.  However I'm spending
$400 / month, and I have spent much more per month, and I cannot
access the appengine control panel at this point.

I haven't forgotten my password, it works every where else on google.

The applications have not stopped running, thank goodness.  They are
still responding normally.

Can someone please suggest something?


On Tue, May 15, 2012 at 9:13 AM, MonkeyBoy casny...@pennswoods.net wrote:
 I am currently unable to access my Appengine projects.

 When I go here:
 https://appengine.google.com/a/pennswoods.net

 I receive this message:

 The application Admin Console is requesting permission to access your
 Google Account.

 Please select an account that you would like to use.

 No accounts are listed.

 Clicking Continue provides me with that error message again.
 Clicking No thanks takes me to: http://www.google.com/

 Any options for recovering my projects?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] Re: lost access to appengine projects

2012-05-16 Thread Barry Hunter

 Can someone please suggest something?

Suggest logging out, clearing all your google.com cookies, and then
trying again.

Sounds like your multi-logon has got confused.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: 1.6.6 Pre-release SDKs available

2012-05-16 Thread Savaş L .
yes, this is true Max, thanks for the reply!


On May 16, 7:27 pm, Max Ross (Google) max.r...@gmail.com wrote:
 It looks like you're trying to use the new appstats library in production
 but we haven't updated our production systems yet. The new appstats
 functionality should work fine when running locally right now.

 Thanks,
 Max







 On Tuesday, 15 May 2012 13:49:34 UTC-7, Savaş L. wrote:

  on java it produce error, at least on my side, removing appstats
  filter solves error

  Error for /_ah/queue/__deferred__
  java.lang.NoSuchMethodError:
  com.google.appengine.tools.appstats.StatsProtos
  $IndividualRpcStatsProto.hasCallCostMicrodollars()Z
          at
  com.google.appengine.tools.appstats.MemcacheWriter.commit(MemcacheWriter.ja 
  va:

  157)
          at
  com.google.appengine.tools.appstats.AppstatsFilter.doFilter(AppstatsFilter. 
  java:

  151)
          at org.mortbay.jetty.servlet.ServletHandler
  $CachedChain.doFilter(ServletHandler.java:1157)
          at
  com.google.apphosting.utils.servlet.ParseBlobUploadFilter.doFilter(ParseBlo 
  bUploadFilter.java:

  102)
          at org.mortbay.jetty.servlet.ServletHandler
  $CachedChain.doFilter(ServletHandler.java:1157)
          at
  com.google.apphosting.runtime.jetty.SaveSessionFilter.doFilter(SaveSessionF 
  ilter.java:

  35)
          at org.mortbay.jetty.servlet.ServletHandler
  $CachedChain.doFilter(ServletHandler.java:1157)
          at
  com.google.apphosting.utils.servlet.TransactionCleanupFilter.doFilter(Trans 
  actionCleanupFilter.java:

  43)
          at org.mortbay.jetty.servlet.ServletHandler
  $CachedChain.doFilter(ServletHandler.java:1157)
          at
  org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.java:
  388)
          at
  org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler.java:
  216)
          at
  org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.java:
  182)
          at
  org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:
  765)
          at
  org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:
  418)
          at
  com.google.apphosting.runtime.jetty.AppVersionHandlerMap.handle(AppVersionH 
  andlerMap.java:

  249)
          at
  org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:
  152)
          at org.mortbay.jetty.Server.handle(Server.java:326)
          at
  org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:
  542)
          at org.mortbay.jetty.HttpConnection
  $RequestHandler.headerComplete(HttpConnection.java:923)
          at
  com.google.apphosting.runtime.jetty.RpcRequestParser.parseAvailable(RpcRequ 
  estParser.java:

  76)
          at
  org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
          at
  com.google.apphosting.runtime.jetty.JettyServletEngineAdapter.serviceReques 
  t(JettyServletEngineAdapter.java:

  135)
          at com.google.apphosting.runtime.JavaRuntime
  $RequestRunnable.run(JavaRuntime.java:446)
          at com.google.tracing.TraceContext
  $TraceContextRunnable.runInContext(TraceContext.java:449)
          at com.google.tracing.TraceContext$TraceContextRunnable
  $1.run(TraceContext.java:455)
          at com.google.tracing.TraceContext.runInContext(TraceContext.java:
  695)
          at com.google.tracing.TraceContext
  $AbstractTraceContextCallback.runInInheritedContextNoUnref(TraceContext.jav 
  a:

  333)
          at com.google.tracing.TraceContext
  $AbstractTraceContextCallback.runInInheritedContext(TraceContext.java:
  325)
          at com.google.tracing.TraceContext
  $TraceContextRunnable.run(TraceContext.java:453)
          at com.google.apphosting.runtime.ThreadGroupPool
  $PoolEntry.run(ThreadGroupPool.java:251)
          at java.lang.Thread.run(Thread.java:679)

  On May 15, 9:09 pm, Marzia Niccolai marce+appeng...@google.com
  wrote:
   Hi,

   The pre-release SDKs for 1.6.6 are available. You can download them
  here:

   Python:
 http://code.google.com/p/googleappengine/downloads/detail?name=google...
   Java:
 http://code.google.com/p/googleappengine/downloads/detail?name=appeng...

   Java Version 1.6.6
   ===
   - On May 8, 2012 we released an experimental Search API.

  http://googleappengine.blogspot.com/2012/05/looking-for-search-find-i...

   - App creation for apps using the Master/Slave datastore is now
  restricted
   to
     only those users who already own a Master/Slave app.
   - Apps with billing enabled are now able to configure up to 100 cron
  jobs.
   - Admin Console can no longer be included in an iframe.  To prevent
     clickjacking attacks on the Admin Console, we are now setting
     X-Frame-Options: SAMEORIGIN.  To read more about clickjacking, please
   read:
    https://www.owasp.org/index.php/Clickjacking.
   - The datastore now supports embedding entities as properties of other
   entities.
   - The Admin Console will now periodically prompt administrators to take
  an
     optional App 

Re: [google-appengine] Re: lost access to appengine projects

2012-05-16 Thread Chris Snyder
Thank you.

I have tried that.  Clearing all the cookies, different browsers,
different computers, I still get the same bizarre (to me) error
message.

The application Admin Console is requesting permission to access your
Google Account.

Please select an account that you would like to use.

I get this even if I've cleared all the cookies from the browser and
then go directly to https://appengine.google.com/a/pennswoods.net .

If I go to https://appengine.google.com it will let me sign in just
fine, but _that_ account is empty of projects.


On Wed, May 16, 2012 at 1:52 PM, Barry Hunter barrybhun...@gmail.com wrote:

 Can someone please suggest something?

 Suggest logging out, clearing all your google.com cookies, and then
 trying again.

 Sounds like your multi-logon has got confused.

 --
 You received this message because you are subscribed to the Google Groups 
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to 
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/google-appengine?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] EMERGENCY: Entity serialization broke yesterday

2012-05-16 Thread Chris Ramsdale
Hey Jeff,

A quick update here: we've discovered an issue with an update that we
recently made regarding the structure of embedded entities.  This update
has been rolled back as of 11am PST today (05/16).  Can you confirm that
Objectify users are no longer seeing issues?

-- Chris

On Wed, May 16, 2012 at 10:15 AM, Chris Ramsdale cramsd...@google.comwrote:

 Hey Jeff,

 We're looking into this and will follow-up as soon as we have more info.

 -- Chris


 On Wed, May 16, 2012 at 9:57 AM, Jeff Schnitzer j...@infohazard.orgwrote:

 A lot of Objectify users are reporting an NPE with a stack trace that
 looks like this:

 java.lang.NullPointerException
at
 com.google.appengine.api.datastore.PropertyContainer.getProperties(PropertyContainer.java:48)
at com.googlecode.objectify.impl.Transmog.load(Transmog.java:336)
...more lines that don't matter

 This is caused by a call to Entity.getProperties() on an Entity object
 that was deserialized from memcache.  Did something break in Entity
 serialization?  This class PropertyContainer does not exist in the
 published gae-java-sdk source.

 The temporary fix is to disable @Cached... but this obviously a major
 problem and a lot of applications are suffering right now.  Please
 help.

 Jeff

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.




-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] backing up the datastore backups

2012-05-16 Thread Sheado
Hi All, 

I'm wondering if there's a way to download datastore backups from the 
blobstore then be able to re-upload them and restore via the uploaded 
files. 
Currently, I only see a way to backup and restore what automatically shows 
up in the Datastore Admin page.

Thanks!
-Chad

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/7vDn_ZYOs2oJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: lost access to appengine projects

2012-05-16 Thread Matthew Blain
It looks like you using a Google Apps account. Has it gone through the
transition to the new accounts infrastructure? (
http://support.google.com/a/bin/answer.py?hl=enanswer=182075 )?
If not, I suspect you've hit a recent bug which should be fixed soon.
The workarounds are:
 a) Transition your account. This will make it work immediately; I'm
uncertain as to what cases you wouldn't want to do this.
 b) Send me (privately) your apps and an alternate account (e.g. a
gmail account) and we can add that account as an additional admin to
the apps. Once the bug fix is rolled out, you can remove the alternate
account as an admin.

--Matthew



On May 16, 10:57 am, Chris Snyder casny...@pennswoods.net wrote:
 Thank you.

 I have tried that.  Clearing all the cookies, different browsers,
 different computers, I still get the same bizarre (to me) error
 message.

 The application Admin Console is requesting permission to access your
 Google Account.

 Please select an account that you would like to use.

 I get this even if I've cleared all the cookies from the browser and
 then go directly tohttps://appengine.google.com/a/pennswoods.net.

 If I go tohttps://appengine.google.comit will let me sign in just
 fine, but _that_ account is empty of projects.







 On Wed, May 16, 2012 at 1:52 PM, Barry Hunter barrybhun...@gmail.com wrote:

  Can someone please suggest something?

  Suggest logging out, clearing all your google.com cookies, and then
  trying again.

  Sounds like your multi-logon has got confused.

  --
  You received this message because you are subscribed to the Google Groups 
  Google App Engine group.
  To post to this group, send email to google-appengine@googlegroups.com.
  To unsubscribe from this group, send email to 
  google-appengine+unsubscr...@googlegroups.com.
  For more options, visit this group 
  athttp://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] python/java conflict? version problems?

2012-05-16 Thread rcp
OSX 10.6.8; I'm running a jsonengine (app engine with the java framework) 
instance fine and have run an app engine instance with the python framework 
with no problem in the past.

Now, I can't get the app engine (python) simulator to work on this OSX box. 
The launcher starts ok, the test application indicates green, but when I 
direct the browser to the localhost address, the gae Launcher log spews 
Python 2.6 errors and the browser reports http 500.

I have seen that gae wants python 2.5 or 2.7 and I have tried to install 
each with no success, and I can't figure out how to switch from one 
python framework to another. How is this supposed to work? Is there a 
verify your python install process somewhere?

Or, is it perhaps a collision between gae java and gae python? Thanks for 
any suggestions.

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/-3CfPiyAHWAJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: Absolutely newcomer wanting to know if this or google app script is what i need.

2012-05-16 Thread anthell
where can i get a sample of that generic plug?


sorry for being such an idiot i know that this forum is more for 
developers, maybe you can refer me to a more basic forum in which i can ask 
questions in general about what do i need?

or am i in the right forum for that?

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/KLsZZpt0QvUJ.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Re: The Schedule Format of cron.xml

2012-05-16 Thread Larry
Hi Lan,
Thank you. 
In option 1:
Do you mean using *etaMillis of **TaskOptions *using  to specify the 
execute time?
This could be a solution. We can trigger a TaskInit by cron and create 48 
tasks in queue(every 30 minutes)
to avoid chain task.


In option 2:
This is my first thought about cron.xml . I just wish a simple syntax 
to support such requirement.
If I change the schedule from 30 minutes to 2 minutes, the cron.xml will be 
1800 entries.





Ian Marshall於 2012年5月16日星期三UTC+8下午5時15分11秒寫道:

 Your syntax problem may lie within your schedule tag (mix of month 
 and every, and unwanted final comma): 

   schedule1,15, of month every 2 hours/schedule 

 Your description tag and posting text do not match the every 2 hours 
 in your schedule tag. Assuming that you want to run every 30 
 minutes... 

 Option 1: try 

   schedule1,15 of month 00:00/schedule 

 and at the end of your scheduled task enqueue a task to execute 30 
 minutes later, if this would be within the same day. 


 Option 2: try 

   schedule1,15 of month 00:00/schedule 
   schedule1,15 of month 00:30/schedule 
   schedule1,15 of month 01:00/schedule 
   schedule1,15 of month 01:30/schedule 
   ... 
   schedule1,15 of month 23:30/schedule 

 This is more robust than chaining enqueued tasks kicked off by a 
 scheduled task, but would be more cumbersome to code, since you will 
 need a cron entry for each schedule. 


 Is this any help? 


 On May 15, 12:20 pm, Larry kuei...@gmail.com wrote: 
  Hello All, 
   Is it possible to execute my job as following: 
  
  ?xml version=1.0 encoding=UTF-8? 
  cronentries 
cron 
  url/mytask/url 
  descriptionExecute my task, every 30 minutes of first and15th of 
  month  /description 
  schedule1,15, of month every 2 hours/schedule 
  timezoneAmerica/New_York/timezone 
/cron 
  /cronentries 
  
  This syntax is wrong and fail to deploy to GAE. 
  I tested another solution. Execute mytask every 30 minutes. Execute the 
  real task only the date is 1 and 15. 
  I check the dashboard. The Frontend Instance Hours increase 
 dramatically. 
  
  Any thoughts? 
  Larry

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/sAl5cT5eeC4J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] App experiencing high latency

2012-05-16 Thread tarun2000
One of my Java HRD apps is experiencing very high latency.  The appid is 
webaleppo.  I have not made any changes to the deployed version recently 
and it was working fine yesterday.  The application logs show normal delays 
for the requests even though the latency is 30+ seconds (or timeout).

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/9kq5Y8VDmG4J.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



Re: [google-appengine] App experiencing high latency

2012-05-16 Thread Tarun Pondicherry
Sorry, I posted too hastily.  The issue was with my proxy.  The normal ae
logs should have tipped me off.

On Wed, May 16, 2012 at 8:57 PM, tarun2000 tarunpondiche...@gmail.comwrote:

 One of my Java HRD apps is experiencing very high latency.  The appid is
 webaleppo.  I have not made any changes to the deployed version recently
 and it was working fine yesterday.  The application logs show normal delays
 for the requests even though the latency is 30+ seconds (or timeout).

 --
 You received this message because you are subscribed to the Google Groups
 Google App Engine group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/google-appengine/-/9kq5Y8VDmG4J.
 To post to this group, send email to google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/google-appengine?hl=en.


-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.



[google-appengine] Feedback on experimental Mac Launcher for Python

2012-05-16 Thread Brian Quinlan
Hi,

Along with the usual components of the App Engine 1.6.5 release, we
also released an experimental version of the Mac OS X Launcher that
includes a siloed version of Python 2.7 (see
https://developers.google.com/appengine/downloads). Our reason for
providing this was to reduce the number of dependencies that Mac users
needed to download before they have a usable SDK.

This experimental launcher was downloaded 500 times but we haven't
received any feedback about it. Could anyone who downloaded and try it
please respond to this thread saying whether they had any problems or
not?

The more feedback we get, the better our release will be and your help
is really appreciated!

Cheers,
Brian

-- 
You received this message because you are subscribed to the Google Groups 
Google App Engine group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.