Re: [google-appengine] SendGrid Integration

2013-07-24 Thread Dan Holevoet
Hi Joshua,

It was just announced this morning. More details here:
http://googlecloudplatform.blogspot.com/2013/07/sendgrid-gives-app-engine-developers.html

Thanks,
Dan


On Wed, Jul 24, 2013 at 1:22 PM, Joshua Smith joshuaesm...@charter.netwrote:

 Dunno how I missed this, but given the train wreck of GAE's email
 delivery, this is very promising:

 https://developers.google.com/appengine/articles/sendgrid

 -Joshua

 --
 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 this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine.
 For more options, visit https://groups.google.com/groups/opt_out.





-- 
Dan Holevoet
Google Developer Relations

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] Google Oauth Javascript immediate:“true” NOT WORKING

2013-06-11 Thread Dan Holevoet
I've commented on your Stack Overflow post (
http://stackoverflow.com/questions/17017180/google-oauth-javascript-immediatetrue-not-working).
Can you follow-up there?


On Tue, Jun 11, 2013 at 1:31 PM, Gana javabu...@gmail.com wrote:

 I am trying to use google endpoints. I have multiple page applicaiton. The
 user logs in using google auth javascript apis. I am using
 https://developers.google.com/api-client-library/javascript/reference/referencedocs#gapiauthauthorize

 On the subsequent pages I need to get the access token values, so I can
 call the google endpoints with the access token set along with the request.

 As per the documentation, its adviced to use immediate:true, but nothing
 comes up with that flag. It works with immediate:false, but that comes up
 with a pop up window. It will be annoying to the users to get pop up window
 on each screen as my user navigates across each page

 I refered to this sample applicaiton
 https://google-api-javascript-client.googlecode.com/hg/samples/authSample.html,
 after succesful login /autherize, if I come back to this application, it is
 showing up the authorize button and I have to hit it (pop up shows) to get
 authorized.

 Please help!!!

 --
 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 this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
Dan Holevoet
Google Developer Relations

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] Google Cloud Endpoints Without SSL

2013-06-07 Thread Dan Holevoet
Hi Isaac,

Endpoints requires SSL. There haven't been (and are unlikely to be) any
plans to change this. If you need to access your API in a system not
supporting SSL, you'll need to either update the system to support SSL or
run through a proxy.

Thanks,
Dan


On Fri, Jun 7, 2013 at 11:19 AM, Isaac Lañado ilan...@gmail.com wrote:

 Hi All,

 I'm trying to create a web-service with Google App Engine (GAE) and the
 Google Cloud Endpoints using Java. I've just created a simple example which
 retrieves a simple text and it works perfect.

 The problem that I'm having is that when I upload it to GAE and access the
 web-service through HTTP i get the following messege from the json response

 {error:{errors:[{domain:global,reason:sslRequired,message:SSL 
 is required to perform this operation.}],code:403,message:SSL is 
 required to perform this operation.}}


 and when I access through HTTPS i do get the right response

 {
  Text: Hello world! from lanado's computer,

  kind: test#helloWorldEndpointItem,

  etag: \D2SOFqEdwN1r8G-XCKxgVNRrWR0/izo2v_k7CeWU238fP57lIflWlHE\
 }



 The thing is i really do need to access the web-service through HTTP since
 I'm connectig directly from a ORACLE XE database.

 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 from it, send an
 email to google-appengine+unsubscr...@googlegroups.com.
 To post to this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
Dan Holevoet
Google Developer Relations

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] How to set deadline for a PHP URL fetch?

2013-06-03 Thread Dan Holevoet
This is a great question for the App Engine Stack Overflow
taghttp://stackoverflow.com/questions/tagged/google-app-engine,
which also conveniently happens to have an
answerhttp://stackoverflow.com/questions/2162115/how-to-set-timeout-for-urlfetch-in-google-app-enginefor
you!

Thanks,
Dan


On Mon, Jun 3, 2013 at 8:20 AM, 1moretime chengxia...@gmail.com wrote:

 URL Fetch overview says:

 You can set a deadline for a request, the most amount of time the
 service will wait for a response. By default, the deadline for a fetch
 is 5 seconds. The maximum deadline is 60 seconds for HTTP requests and
 10 minutes for task queue and cron job requests.

 Now, how can i set deadline to 60-sec ?

 --
 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 this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.





-- 
Dan Holevoet
Google Developer Relations

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] want to migrate to python 2.7 from 2.5,but after making changes website doesn't work

2013-06-03 Thread Dan Holevoet
Hi Sam,

It looks like you've already asked this identical question, and haven't
provided any additional information in this second thread. Given the
technical question and answer format of your post, I'd suggest asking the
same on Stack Overflow. Make sure to provide additional details such as the
exact error message you are receiving on your site.

Thanks,
Dan


On Mon, Jun 3, 2013 at 1:50 PM, Sam Mak sam@gmail.com wrote:

 I am trying to migrate from python to 2.7 to 2.5 but after making the
 required changes to main.py and app.yaml file, my site does not work

 please help... what changes should i make to these to get it to work

 main.py

 import os
 from google.appengine.ext import webapp
 from google.appengine.ext.webapp import util
 from google.appengine.ext.webapp import template

 class MainHandler(webapp.**RequestHandler):
   def get (self, q):
 if q is None:
   q = 'index.html'

 path = os.path.join (os.path.dirname (__file__), q)
 self.response.headers ['Content-Type'] = 'text/html'
 self.response.out.write (template.render (path, {}))

 def main ():
   application = webapp.WSGIApplication ([('/(.*html)?', MainHandler)],
 debug=True)
   util.run_wsgi_app (application)

 if __name__ == '__main__':
   main ()



 app.yaml

 application: cool-gadgets
 version: 1
 runtime: python
 api_version: 1



 handlers:
 - url: /robots.txt
   static_files: static/robots.txt
   upload: static/robots.txt

 - url: /favicon.ico
   static_files: static/favicon.ico
   upload: static/favicon.ico

 - url: /gadgets/disney.xml
   static_files: gadgets/disney.xml
   upload: gadgets/disney.xml

 - url: /gadgets/wwe.xml
   static_files: gadgets/wwe.xml
   upload: gadgets/wwe.xml

 - url: .*
   script: main.py

  --
 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 this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
Dan Holevoet
Google Developer Relations

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] [Python] Endpoints vs ProtoRPC ~200ms overhead

2013-04-17 Thread Dan Holevoet
Hi Alex,

No, I don't think you're doing it wrong. Your post encouraged me to find
out the results of our internal analysis, which came up similar to what you
were seeing. The good news is that there are a few different efforts
underway to chip away at the latency total. I can't give specifics, but
this is something we're working to improve.

I wouldn't expect Endpoints to be as fast as ProtoRPC, but hopefully we can
close the gap a bit. I also hope that the extra features provided by
Endpoints (currently, or in the future) will make it worth the latency hit.

Thanks,
Dan


On Mon, Apr 15, 2013 at 2:49 PM, alex a...@cloudware.it wrote:

 Hey, Dan. So, I basically took those numbers from logs of one of my
 apps (Python 2.7, threadsafe=true, SDK v1.7.7)

 I was looking at the logs the other day and noticed all Endpoints API
 calls were taking at least 200ms up to 400-500ms (well, I clearly had
 some Datastore and other stuff going on for it to be 500ms).

 I started experimenting and ended up with those two simple classes,
 EndpointsTest vs ProtoRpcTest, and TestMsg with the only msg string
 field.

 I then started calling their test method using curl (manually from a
 terminal) and watch the logs, for maybe 15-20 mins repeatedly with
 about 0.3-0.5 rps rate. I did the average in my head. Pretty easy - it
 never went lower than 200ms and higher than 270ms for
 EndpointsTest.test, and was in between 6ms-12ms for ProtoRpcTest.test.

 This was running an app in EU datacenters. I thought I'd try it with
 anothe app in US but got the same results.

 Maybe I was doing it all wrong. Actually, I'll be happy to hear that.

 Please let me know if this makes sense or I'm just comparing apples to
 oranges.

 On Mon, Apr 15, 2013 at 11:19 PM, Dan Holevoet
 danielholev...@google.com wrote:
  Hi Alex,
 
  Can you share a bit more information about how you performed your tests?
 Are
  those numbers averages? How many times did you call both APIs? Was this
  repeatable or did you run the test multiple times?
 
  Thanks,
  Dan
 
 
  On Sat, Apr 13, 2013 at 1:46 AM, alex a...@cloudware.it wrote:
 
  I'm not sure it's even possible (to reduce the overhead), and I do
  understand there's another infrastructure layer that uses ProtoPRC lib,
 but
  still comare this:
 
  @endpoints.api(name='test', version='v1')
  class EndpointsTest(remote.Service):
@endpoints.method(VoidMessage, TestMsg)
  def test(req):
return TestMsg(msg='Hello there')
 
  curl /test/v1/test
  {msg:'Hello there'}
 
  - results in at least 200ms
 
 
  to this:
 
  class ProtoRpcTest(remote.Service):
@remote.method(VoidMessage, TestMsg)
def test(req):
  return TestMsg(msg='Hello there')
 
  curl -X POST /prototest.test
  {msg:'Hello there'}
 
  - results in about 7-10ms
 
 
  There seem to be a few additional roundtrips going on when making
 requests
  via Endpoints.
  Do you guys think it's possible to reduce the latency?
 
  --
  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 this group, send email to google-appengine@googlegroups.com.
  Visit this group at
 http://groups.google.com/group/google-appengine?hl=en.
  For more options, visit https://groups.google.com/groups/opt_out.
 
 
 
 
 
 
  --
  Dan Holevoet
  Google Developer Relations
 
  --
  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 this group, send email to google-appengine@googlegroups.com.
  Visit this group at
 http://groups.google.com/group/google-appengine?hl=en.
  For more options, visit https://groups.google.com/groups/opt_out.
 
 

 --
 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 this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.





-- 
Dan Holevoet
Google Developer Relations

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] [Python] Endpoints vs ProtoRPC ~200ms overhead

2013-04-15 Thread Dan Holevoet
Hi Alex,

Can you share a bit more information about how you performed your tests?
Are those numbers averages? How many times did you call both APIs? Was this
repeatable or did you run the test multiple times?

Thanks,
Dan


On Sat, Apr 13, 2013 at 1:46 AM, alex a...@cloudware.it wrote:

 I'm not sure it's even possible (to reduce the overhead), and I do
 understand there's another infrastructure layer that uses ProtoPRC lib, but
 still comare this:

 @endpoints.api(name='test', version='v1')
 class EndpointsTest(remote.Service):
   @endpoints.method(VoidMessage, TestMsg)
 def test(req):
   return TestMsg(msg='Hello there')

 curl /test/v1/test
 {msg:'Hello there'}

 - results in at least 200ms


 to this:

 class ProtoRpcTest(remote.Service):
   @remote.method(VoidMessage, TestMsg)
   def test(req):
 return TestMsg(msg='Hello there')

 curl -X POST /prototest.test
 {msg:'Hello there'}

 - results in about 7-10ms


 There seem to be a few additional roundtrips going on when making requests
 via Endpoints.
 Do you guys think it's possible to reduce the latency?

 --
 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 this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
Dan Holevoet
Google Developer Relations

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




[google-appengine] Re: Package name error in app engine connected android project after endpoint library generation

2013-04-12 Thread Dan Holevoet
There's an issue filed in the Google Plugin for Eclipse tracker which you 
can 
follow: https://code.google.com/p/google-plugin-for-eclipse/issues/detail?id=117

On Friday, April 12, 2013 11:55:01 AM UTC-7, Simon Hirscher wrote:

 Generating Endpoint client library fails with strange package name error 
 (s. error.png). Is this a known issue? 

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] Deploy appengine endpoints to non-default version

2013-04-08 Thread Dan Holevoet
Hi Miguel,

Unfortunately, the ability to deploy Endpoints to non-default app versions
still isn't available. The required SDK code should be in 1.7.6+, but
awaits a change on the backend to take effect. I'll post an update when
it's live.

Thanks,
Dan


On Fri, Apr 5, 2013 at 7:58 AM, Miguel Sanz msanz...@yellwifi.com wrote:

 According to the trusted tester documentation, there was an issue with
 endpoints that prevented them to be created when deploying to a
 non-default version. When 1.7.5 was released and endpoints graduated from
 trusted tester to Experimental we were told that this issue was fixed but
 couldn't be included in 1.7.5 (for timing reasons) and would be included in
 the next version.

 Ok, the next version is already here (1.7.6) but still, if I deploy
 endpoints to a non-default version, they are not generated. Does anybody
 know if there is some specific setting that needs to be added to web.xml,
 appengine-web.xml or somewhere else? Or is this just that this feature was
 not included in 1.7.6 either.

 From my point of view this is essential. I have an Android app based on
 requestfactory. If I replace my default version, the app will stop working.
 I need to deploy to a separate version, deploy a new Android app version
 pointing to this server version, and after some time when most of users
 have updated their Android app set that as default.

 Thanks for any hints on this.

 --
 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 this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
Dan Holevoet
Google Developer Relations

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] Endpoint Error Stuck, about to take alternate routes :(

2013-03-22 Thread Dan Holevoet
Hi Gana,

Have you asked this question on Stack Overflow (and provided code?)

Thanks,
Dan


On Fri, Mar 22, 2013 at 6:02 AM, javabuddy javabu...@gmail.com wrote:


 After much struggle and lot of local testing created my endpoint
 applicaiton, but once I deploy to app engine I getting the following error.

 https://ganatest6.appspot.com/_ah/api/taskandtest/v1/alerts?username=g

 {
  error: {
   errors: [
{
 domain: global,
 reason: internalError,
 message: Internal Error
}
   ],
   code: 500,
   message: Internal Error
  }
 }


 Is endpoints not ready for Production?? If so I am stuck and need to find 
 alternate ways.


 Please help.



 -Gana

  --
 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 this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
Dan Holevoet
Google Developer Relations

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] Cannot activate billing

2013-02-04 Thread Dan Holevoet
Hi,

Can you check out the FAQs here (
https://developers.google.com/appengine/kb/billing), and if those aren't
helpful, fill out this billing help form?
https://developers.google.com/appengine/kb/billing#morehelp

Thanks,
Dan


On Sun, Feb 3, 2013 at 1:53 AM, lutfi.al...@gmail.com wrote:

 I have been trying to activate billing for almost 1 day.

 My google wallet account says that it is ok and my applications status
 becomes activating billing.
 About 2 hours later my application status again becomes free.

 Can anyone 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+unsubscr...@googlegroups.com.
 To post to this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
Dan Holevoet
Google Developer Relations

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] GAE down ?

2013-01-31 Thread Dan Holevoet
Hi Francois,

The status page was updated a few minutes ago with a message that we're
investigating the issue. We'll update as we have more information.

Thanks,
Dan


On Thu, Jan 31, 2013 at 2:12 PM, Francois Masurel f.masu...@gmail.comwrote:

 Hey Google, what is going on ?  Status 
 pagehttp://code.google.com/status/appengine/ has
 been showing Anomaly state for a few minutes already.

 Most of my customers web sites hosted on my GAE app (vncts1) are down or
 only half loading.

 New instances are started every few seconds and killed almost immediately.

 My app doesn't have enough time to get fully initialized (it usually takes
 less than 8s).

 And last outage was only few days ago...

 François


  --
 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 this group, send email to google-appengine@googlegroups.com.
 Visit this group at http://groups.google.com/group/google-appengine?hl=en.
 For more options, visit https://groups.google.com/groups/opt_out.






-- 
Dan Holevoet
Google Developer Relations

-- 
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 this group, send email to google-appengine@googlegroups.com.
Visit this group at http://groups.google.com/group/google-appengine?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [google-appengine] Re: High performance image serving error 500

2012-11-13 Thread Dan Holevoet
Is anyone still experiencing this issue?

Thanks,
Dan


On Tue, Nov 13, 2012 at 1:07 PM, Savaş L. sbuyukk...@gmail.com wrote:

 also error on java...

 IOException of writeChannel closeFinally



 On Nov 13, 10:58 pm, Ryan ryan.we...@gmail.com wrote:
  I'm seeing the same error (ApplicationError: 7)...is this a blobstore
  issue?
 
  From our logs:
 
  File
 /base/python27_runtime/python27_lib/versions/1/google/appengine/api/files/
 file.py, line 568, in finalize
  f.close(finalize=True)
File
 /base/python27_runtime/python27_lib/versions/1/google/appengine/api/files/
 file.py, line 291, in close
  self._make_rpc_call_with_retry('Close', request, response)
File
 /base/python27_runtime/python27_lib/versions/1/google/appengine/api/files/
 file.py, line 427, in _make_rpc_call_with_retry
  _make_call(method, request, response)
File
 /base/python27_runtime/python27_lib/versions/1/google/appengine/api/files/
 file.py, line 252, in _make_call
  _raise_app_error(e)
File
 /base/python27_runtime/python27_lib/versions/1/google/appengine/api/files/
 file.py, line 186, in _raise_app_error
  raise UnknownError(e)
  UnknownError: ApplicationError: 7
 
 
 
 
 
 
 
  On Tuesday, November 13, 2012 3:56:55 PM UTC-5, Jonathan wrote:
 
   Hi,
   for the last 30 minutes users can't upload pictures to my system (
   app.imcreator.com/edit)
 
   that's the erroe from the log:
 
   ApplicationError: 7
   Traceback (most recent call last):
 File
 /base/python_runtime/python_lib/versions/1/google/appengine/ext/webapp/_we
 bapp25.py, line 712, in __call__
   handler.post(*groups)
 File
 /base/data/home/apps/im-creator/181-zarif.362980194933832017/im-creator.py
 , line 2042, in post
   files.finalize(file_name)
 File
 /base/python_runtime/python_lib/versions/1/google/appengine/api/files/file
 .py, line 568, in finalize
   f.close(finalize=True)
 File
 /base/python_runtime/python_lib/versions/1/google/appengine/api/files/file
 .py, line 291, in close
   self._make_rpc_call_with_retry('Close', request, response)
 File
 /base/python_runtime/python_lib/versions/1/google/appengine/api/files/file
 .py, line 427, in _make_rpc_call_with_retry
   _make_call(method, request, response)
 File
 /base/python_runtime/python_lib/versions/1/google/appengine/api/files/file
 .py, line 252, in _make_call
   _raise_app_error(e)
 File
 /base/python_runtime/python_lib/versions/1/google/appengine/api/files/file
 .py, line 186, in _raise_app_error
   raise UnknownError(e)
   UnknownError: ApplicationError: 7
 
   Any idea? please fix.
 
   Thanks!
 
   J

 --
 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] Google AppEngine Endpoints and TrustedTester Program

2012-11-07 Thread Dan Holevoet
Hi Alexej,

We go through the invites on a ~weekly basis, so you shouldn't have to wait
too long. (Which will remain true as long as the signup form remains open.)

Thanks,
Dan


On Wed, Nov 7, 2012 at 1:24 PM, Alexej Haak 
alexejmichaelh...@googlemail.com wrote:

 The technology is great, and easy to handle. I love it so far
 Only thing that sucks is that I haven't found why it isn't working for an
 hour.. then I found the admin log feature (only looked at the normal user
 log..) and found out that endpoints isn't avaible to me.
 I've signd up to it alrdy, what are the chances so far into testing to
 still get a spot? I haven't found any official blog entries or news how far
 the development process is now and when it will be released to public

 so far, keep the good work google

 --
 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/-/03F4ZoBnAswJ.
 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] How to migrate an app to HRD and keep its application id?

2012-11-02 Thread Dan Holevoet
The final step of the HRD migration will alias your old app ID to the new
one. A visitor to foo.appspot.com will see the behavior of
foo-hrd.appspot.com (or whatever you called your HRD app). If your only
concern is user-facing behavior, it's not an issue.

Thanks,
Dan


On Fri, Nov 2, 2012 at 1:24 PM, Andrew Mackenzie 
and...@mackenzie-serres.net wrote:

 After wanting to do the same I found no way to do so, and believe this is
 impossible.

 My best suggestion: use your own DNS domain, and map to
 myappid.appspot.com, and get your users to use that.

 After migration, change DNS to map to newappid.appspot.com

 Andrew

 --
 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/-/QIt987GzmWcJ.
 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] Re: Where to report production issue?

2012-10-22 Thread Dan Holevoet
Hi everyone,

It looks like the template was inadvertently removed and is now restored.

Thanks,
Dan


On Mon, Oct 22, 2012 at 5:40 AM, Brian blruu...@gmail.com wrote:

 Any response from Google on this? I was just about to enable billing on my
 app, but it seems foolish to pay for a service lacks a channel to report
 production issues! (Most other business models would consider this
 a fundamental primary service requirement, no?)

 --
 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/-/2CVuWnROuqAJ.

 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] Re: GAE 1.7.1 SDK is now available for download

2012-08-21 Thread Dan Holevoet
Hi everyone,

You can also read more about the release in the announcement blog
posthttp://googleappengine.blogspot.com/2012/08/app-engine-171-released.html
.

Thanks,
Dan


On Tue, Aug 21, 2012 at 11:55 AM, Bryce Cutt pandas...@gmail.com wrote:

 Release notes are up too:
 http://code.google.com/p/googleappengine/wiki/SdkReleaseNotes

 Personally I am most interested in AppStats showing information about the
 cost of the RPCs made during a request.



 On Tuesday, August 21, 2012 11:35:10 AM UTC-7, Bryce Cutt wrote:

 http://code.google.com/p/**googleappengine/downloads/listhttp://code.google.com/p/googleappengine/downloads/list

  --
 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/-/JYTb4Cbck2YJ.

 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] Can't start an instance of my application

2012-07-17 Thread Dan Holevoet
Hi,

There was an issue reported earlier today with application deployment:
http://code.google.com/p/googleappengine/issues/detail?id=7861. However, it
appears to be fixed now. If you are still having deployment issues, please
file a new issue in the tracker.

Thanks,
Dan


On Tue, Jul 17, 2012 at 2:40 PM, Alden al...@cover5.com wrote:

 Hi,

 Anyone having issues deploying right now?  My app normally spins up fairly
 quickly, but today it's been noticeably slower.  And getting slower as the
 day went on.  Anecdotally, it seems like several hours ago a deply took a
 minute or two longer, then they have increased throughout the day, until
 now it's timing out completely, and I get this, which according to some
 older threads seems indicative of a maintenance period.

 java.lang.RuntimeException: Version not ready.
 Unable to update app: Version not ready.

 Is there anywhere else to look for more information?  Appengine system
 status dashboard says things are normal.

 app id: cover5api.appspot.com

 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/-/IQJS8ETPfdYJ.
 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] Drive DrEdit

2012-07-13 Thread Dan Holevoet
$TraceContextRunnable.run(TraceContext.java:453)
   at 
 com.google.apphosting.runtime.ThreadGroupPool$PoolEntry.run(ThreadGroupPool.java:251)
   at java.lang.Thread.run(Thread.java:679)
Caused by: java.lang.ClassNotFoundException: 
 com.google.api.client.http.HttpTransport
   at 
 com.google.appengine.runtime.Request.process-1a9757181952ef12(Request.java)
   at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
   at java.lang.Class.getDeclaredConstructors0(Native Method)
   at java.lang.Class.privateGetDeclaredConstructors(Class.java:2406)
   at java.lang.Class.getConstructor0(Class.java:2716)
   at java.lang.Class.newInstance0(Class.java:343)
   at java.lang.Class.newInstance(Class.java:325)
   at org.mortbay.jetty.servlet.Holder.newInstance(Holder.java:153)
   at 
 org.mortbay.jetty.servlet.ServletHolder.initServlet(ServletHolder.java:428)
   at 
 org.mortbay.jetty.servlet.ServletHolder.getServlet(ServletHolder.java:339)
   at 
 org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:487)
   at 
 org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1166)
   at 
 org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
   at 
 org.mortbay.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1157)
   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 
 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 org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:404)
   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)
   ... 1 more

3. I2012-07-13 11:31:04.037

This request caused a new process to be started for your application, and 
 thus caused your application code to be loaded for the first time. This 
 request may thus take longer and use more CPU than a typical request for your 
 application.


  --
 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/-/_8WSI0ZRNtYJ.
 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] Endpoints section in the control panel?

2012-07-11 Thread Dan Holevoet
The Java command line tool is shipped in the current SDK in
$SDK/bin/endpoints.sh. The Python version isn't currently in the SDK.

You can also use the latest version of the Google Plugin for Eclipse if
you're working on a Java backend.

Thanks,
Dan


On Tue, Jul 10, 2012 at 8:49 PM, Kyle Finley kylefin...@gmail.com wrote:

 Perfect, that's what I was hoping.

 How are the Discovery docs created?
 I suspect that there is a program that takes the annotated code (python /
 java) and creates the document? Where would one find this tool? I apologize
 if it is in the SDK. I couldn't find it.


 - Kyle


 On Jul 10, 2012, at 8:10 PM, Dan Holevoet wrote:

 Hi Kyle,

 Discovery documents *are* served for all Endpoints (at
 your_app_id.appspot.com/_ah/apis/discovery/v1/apis) just like
 Google-authored APIs. We also provide a local version of the discovery doc
 (as a file) when you do local development so you don't have to push to
 production to test your Endpoint.

 The local discovery doc is used to generate the Objective-C library. The
 Go generator would use the local file as well. (Of course, you can point
 them to the live discovery doc if you'd like to.) So, I think we're
 offering what you want. Apologies if my explanation is (or was) confusing.
 I'm happy to elaborate further.

 Thanks,
 Dan


 On Tue, Jul 10, 2012 at 4:11 PM, Kyle Finley kylefin...@gmail.com wrote:

 Hi Dan,

 Thank you for your reply.

 If you're just interested in generating a client library for an Endpoint
 that you can consume in Go, you can probably use the 
 gen.gohttp://code.google.com/p/google-api-go-client/source/browse/google-api-go-generator/gen.gofile
  provided by the Go client library. I must include the disclaimer that
 this is entirely untested, the generated library may make assumptions which
 are incorrect for non-Google-authored APIs.


 Yeah this is partly was I was interested in.  I must admin I'm not
 completely clear on how endpoints works. I thought that you might have a
 tools that created discovery https://developers.google.com/discovery/docs 
 from annotated code. That's was what I was interested in looking
 at. I'm sure I can create something similar. I just thought looking at some
 code might help.

 I think this whole process has a lot potential as an open source
 standard. Everyone is struggling for consistency In there API's. You guys
 have done a lot good work with the discovery api and the tools that parse I
 would like to see that spread.

 Thank you,

 Kyle

 If you want to write a backend in Go, there are probably some server-side
 details that would block your implementation.

 Thanks,
 Dan


 --
 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/-/ArnV9WAiW0MJ.

 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.




 --
 Dan Holevoet
 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.


  --
 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] deploying the App Engine: I just can seem to do it!

2012-07-11 Thread Dan Holevoet
Hi,

Google Cloud Endpoints is currently a trusted tester feature. In order to
be able to deploy your Endpoint to your appspot app, you will need to be
whitelisted. Please complete this form:
endpoints-trusted-tester.appspot.comif you haven't already.

Thanks,
Dan


On Mon, Jul 9, 2012 at 9:19 AM, Boy Lenssen boylens...@gmail.com wrote:

 I have been trying all day to get something running with App Engine. I use
 the Google plugin. I generate the cloud endpoints.
 Running it locally and addressing it via curl, no problems...

 Then I deploy it, use the registered application id on appspot and go to:
 appl_id.appspot.com/_ah/api/discovery/v1/apis/my_api/v1/rest, and it
 says : Not found!

 I was following this video until 20 minutes,
 http://www.youtube.com/watch?v=v9TG7OzsZqQ and did the above again, but
 still..the same...

 what am I doing wrong...do I need to change a setting on appspot?

 --
 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/-/4Fu02n47IZoJ.
 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] Re: Endpoints section in the control panel?

2012-07-10 Thread Dan Holevoet
Yes. We have command line tools for Python annotations - client libraries.
(We have them for Java as well, if using Eclipse and the Google Plugin for
Eclipse isn't your thing.)

Thanks,
Dan


On Mon, Jul 9, 2012 at 5:34 PM, timh zutes...@gmail.com wrote:

 Does that mean that the tools exist to generate the client libs from
 annotated python code exist as well ?

 T


 On Tuesday, July 10, 2012 8:25:31 AM UTC+8, Dan Holevoet wrote:

 Google Cloud Endpoints supports Python as well. We don't have any
 specific plans yet for supporting Go.

 Thanks,
 Dan


 On Fri, Jul 6, 2012 at 8:48 PM, timh zutes...@gmail.com wrote:

 HI

 I have watched all of the presentations/videos on endpoints.  All
 examples are java based.
  Are the tools and this service focussed on java only ?  What about
 python/go ?

 Cheers

 T


 On Saturday, July 7, 2012 9:34:19 AM UTC+8, Amy Unruh wrote:



 On 3 July 2012 05:41, Tom Muse tm...@appirio.com wrote:

 Do you have the link for the video handy? I am having difficulties
 locating it.


 Here's the I/O session video: https://developers.**goog**
 le.com/events/io/sessions/**gooi**o2012/303/https://developers.google.com/events/io/sessions/gooio2012/303/.

  -Amy



 Thanks in advance :)


 On Friday, June 29, 2012 6:50:45 PM UTC-4, Tom wrote:

 Just watched the video - endpoints look great.

 Are you able to give us some idea when they will be available for
 non-Trusted testers?

 Thanks.
 Tom

 On Thursday, June 28, 2012 12:44:58 AM UTC-4, Christina Ilvento wrote:

 Hi All,

 Endpoints is one of the features we announced in our App Engine
 overview session today at I/O that's designed to make writing mobile
 backends on App Engine easier. More details to come in talks tomorrow
 (YouTube videos should be up soon) and we'll post some info with the
 trusted tester sign-up form to the groups shortly.


 Thanks,
 Christina

 On Wed, Jun 27, 2012 at 8:58 PM, James Broberg 
 jbrob...@gmail.comwrote:

 I'd also like to know. Don't hold out on us now :)


 On 28 June 2012 06:45, Sam G samuel.gam...@gmail.com wrote:

 Bump. Any word from a Googler on what this is!?


 On Tuesday, June 26, 2012 4:59:33 PM UTC-7, Sam G wrote:


 This section just showed up for me in the App Engine dashboard.
 I also heard PageSpeed and SSL have been released? Where can I
 get to these so that I can sign up?

 The new Endpoints section says that an API.yaml should exist...
 what will go in that? Is there documentation up, now that this is a
 production release?


 https://lh3.googleusercontent.com/-8UcxwQ-SA1c/T-pMt7axhhI/BOA/78xFoVtkBtQ/s1600/endpoints.png
 Is this part of an I/O release?

 Screenshot sample attached.

  --
 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/-/**
 cA8hVE9iYpcJhttps://groups.google.com/d/msg/google-appengine/-/cA8hVE9iYpcJ
 .

 To post to this group, send email to
 google-appengine@googlegroups.**comgoogle-appengine@googlegroups.com
 .
 To unsubscribe from this group, send email to
 google-appengine+unsubscribe@**googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-appengine?hl=enhttp://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 google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscribe@**googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-appengine?hl=enhttp://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 view this discussion on the web visit https://groups.google.com/d/*
 *ms**g/google-appengine/-/**qC8lh4Gfn**8gJhttps://groups.google.com/d/msg/google-appengine/-/qC8lh4Gfn8gJ
 .

 To post to this group, send email to google-appengine@googlegroups.***
 *com google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscribe@**g**ooglegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**group
 **/google-appengine?hl=enhttp://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 view this discussion on the web visit https://groups.google.com/d/**
 msg/google-appengine/-/**buKREK4jKSwJhttps://groups.google.com/d/msg/google-appengine/-/buKREK4jKSwJ
 .

 To post to this group, send email to 
 google-appengine@googlegroups.**comgoogle

Re: [google-appengine] Re: Endpoints section in the control panel?

2012-07-10 Thread Dan Holevoet
The tool (included in the SDK) that generates the Java client library makes
a call to a Google-hosted service (the source of which is not currently
public). The tool that generates the Objective-C library will (I believe)
have its source published.

If you're just interested in generating a client library for an Endpoint
that you can consume in Go, you can probably use the
gen.gohttp://code.google.com/p/google-api-go-client/source/browse/google-api-go-generator/gen.gofile
provided by the Go client library. I must include the disclaimer that
this is entirely untested, the generated library may make assumptions which
are incorrect for non-Google-authored APIs.

If you want to write a backend in Go, there are probably some server-side
details that would block your implementation.

Thanks,
Dan


On Tue, Jul 10, 2012 at 3:21 PM, Kyle Finley kylefin...@gmail.com wrote:

 Are the tools open source? I think that the discovery api has a lot of
 potential and I would like to investigate a Go port.


 On Tuesday, July 10, 2012 3:22:15 PM UTC-5, Dan Holevoet wrote:

 Yes. We have command line tools for Python annotations - client
 libraries. (We have them for Java as well, if using Eclipse and the Google
 Plugin for Eclipse isn't your thing.)

 Thanks,
 Dan


 On Mon, Jul 9, 2012 at 5:34 PM, timh zutes...@gmail.com wrote:

 Does that mean that the tools exist to generate the client libs from
 annotated python code exist as well ?

 T


 On Tuesday, July 10, 2012 8:25:31 AM UTC+8, Dan Holevoet wrote:

 Google Cloud Endpoints supports Python as well. We don't have any
 specific plans yet for supporting Go.

 Thanks,
 Dan


 On Fri, Jul 6, 2012 at 8:48 PM, timh zutes...@gmail.com wrote:

 HI

 I have watched all of the presentations/videos on endpoints.  All
 examples are java based.
  Are the tools and this service focussed on java only ?  What about
 python/go ?

 Cheers

 T


 On Saturday, July 7, 2012 9:34:19 AM UTC+8, Amy Unruh wrote:



 On 3 July 2012 05:41, Tom Muse tm...@appirio.com wrote:

 Do you have the link for the video handy? I am having difficulties
 locating it.


 Here's the I/O session video: https://developers.**goog
 le.com/events/io/sessions/**gooio2012/303/https://developers.google.com/events/io/sessions/gooio2012/303/.

  -Amy



 Thanks in advance :)


 On Friday, June 29, 2012 6:50:45 PM UTC-4, Tom wrote:

 Just watched the video - endpoints look great.

 Are you able to give us some idea when they will be available for
 non-Trusted testers?

 Thanks.
 Tom

 On Thursday, June 28, 2012 12:44:58 AM UTC-4, Christina Ilvento
 wrote:

 Hi All,

 Endpoints is one of the features we announced in our App Engine
 overview session today at I/O that's designed to make writing mobile
 backends on App Engine easier. More details to come in talks tomorrow
 (YouTube videos should be up soon) and we'll post some info with the
 trusted tester sign-up form to the groups shortly.


 Thanks,
 Christina

 On Wed, Jun 27, 2012 at 8:58 PM, James Broberg jbrob...@gmail.com
  wrote:

 I'd also like to know. Don't hold out on us now :)


 On 28 June 2012 06:45, Sam G samuel.gam...@gmail.com wrote:

 Bump. Any word from a Googler on what this is!?


 On Tuesday, June 26, 2012 4:59:33 PM UTC-7, Sam G wrote:


 This section just showed up for me in the App Engine dashboard.
 I also heard PageSpeed and SSL have been released? Where can I
 get to these so that I can sign up?

 The new Endpoints section says that an API.yaml should
 exist... what will go in that? Is there documentation up, now that 
 this is
 a production release?


 https://lh3.googleusercontent.com/-8UcxwQ-SA1c/T-pMt7axhhI/BOA/78xFoVtkBtQ/s1600/endpoints.png
 Is this part of an I/O release?

 Screenshot sample attached.

  --
 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/**ms**g/google-appengine/-/**
 cA8hVE9iY**pcJhttps://groups.google.com/d/msg/google-appengine/-/cA8hVE9iYpcJ
 .

 To post to this group, send email to
 google-appengine@googlegroups.comgoogle-appengine@googlegroups.com
 .
 To unsubscribe from this group, send email to
 google-appengine+unsubscribe@**g**ooglegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/*
 *group**/google-appengine?hl=enhttp://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.comgoogle-appengine@googlegroups.com
 .
 To unsubscribe from this group, send email to
 google-appengine+unsubscribe@**g**ooglegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group**/google-appengine?hl=enhttp://groups.google.com/group

Re: [google-appengine] Re: Endpoints section in the control panel?

2012-07-10 Thread Dan Holevoet
Hi Kyle,

Discovery documents *are* served for all Endpoints (at
your_app_id.appspot.com/_ah/apis/discovery/v1/apis) just like
Google-authored APIs. We also provide a local version of the discovery doc
(as a file) when you do local development so you don't have to push to
production to test your Endpoint.

The local discovery doc is used to generate the Objective-C library. The Go
generator would use the local file as well. (Of course, you can point them
to the live discovery doc if you'd like to.) So, I think we're offering
what you want. Apologies if my explanation is (or was) confusing. I'm happy
to elaborate further.

Thanks,
Dan


On Tue, Jul 10, 2012 at 4:11 PM, Kyle Finley kylefin...@gmail.com wrote:

 Hi Dan,

 Thank you for your reply.

 If you're just interested in generating a client library for an Endpoint
 that you can consume in Go, you can probably use the 
 gen.gohttp://code.google.com/p/google-api-go-client/source/browse/google-api-go-generator/gen.gofile
  provided by the Go client library. I must include the disclaimer that
 this is entirely untested, the generated library may make assumptions which
 are incorrect for non-Google-authored APIs.


 Yeah this is partly was I was interested in.  I must admin I'm not
 completely clear on how endpoints works. I thought that you might have a
 tools that created discovery https://developers.google.com/discovery/docs 
 from annotated code. That's was what I was interested in looking
 at. I'm sure I can create something similar. I just thought looking at some
 code might help.

 I think this whole process has a lot potential as an open source standard.
 Everyone is struggling for consistency In there API's. You guys have done a
 lot good work with the discovery api and the tools that parse I would like
 to see that spread.

 Thank you,

 Kyle

 If you want to write a backend in Go, there are probably some server-side
 details that would block your implementation.

 Thanks,
 Dan

  --
 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/-/ArnV9WAiW0MJ.

 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] Re: Endpoints section in the control panel?

2012-07-09 Thread Dan Holevoet
Google Cloud Endpoints supports Python as well. We don't have any specific
plans yet for supporting Go.

Thanks,
Dan


On Fri, Jul 6, 2012 at 8:48 PM, timh zutes...@gmail.com wrote:

 HI

 I have watched all of the presentations/videos on endpoints.  All examples
 are java based.
 Are the tools and this service focussed on java only ?  What about
 python/go ?

 Cheers

 T


 On Saturday, July 7, 2012 9:34:19 AM UTC+8, Amy Unruh wrote:



 On 3 July 2012 05:41, Tom Muse tm...@appirio.com wrote:

 Do you have the link for the video handy? I am having difficulties
 locating it.


 Here's the I/O session video: https://developers.**
 google.com/events/io/sessions/**gooio2012/303/https://developers.google.com/events/io/sessions/gooio2012/303/.

  -Amy



 Thanks in advance :)


 On Friday, June 29, 2012 6:50:45 PM UTC-4, Tom wrote:

 Just watched the video - endpoints look great.

 Are you able to give us some idea when they will be available for
 non-Trusted testers?

 Thanks.
 Tom

 On Thursday, June 28, 2012 12:44:58 AM UTC-4, Christina Ilvento wrote:

 Hi All,

 Endpoints is one of the features we announced in our App Engine
 overview session today at I/O that's designed to make writing mobile
 backends on App Engine easier. More details to come in talks tomorrow
 (YouTube videos should be up soon) and we'll post some info with the
 trusted tester sign-up form to the groups shortly.


 Thanks,
 Christina

 On Wed, Jun 27, 2012 at 8:58 PM, James Broberg jbrob...@gmail.comwrote:

 I'd also like to know. Don't hold out on us now :)


 On 28 June 2012 06:45, Sam G samuel.gam...@gmail.com wrote:

 Bump. Any word from a Googler on what this is!?


 On Tuesday, June 26, 2012 4:59:33 PM UTC-7, Sam G wrote:


 This section just showed up for me in the App Engine dashboard.
 I also heard PageSpeed and SSL have been released? Where can I get
 to these so that I can sign up?

 The new Endpoints section says that an API.yaml should exist...
 what will go in that? Is there documentation up, now that this is a
 production release?


 https://lh3.googleusercontent.com/-8UcxwQ-SA1c/T-pMt7axhhI/BOA/78xFoVtkBtQ/s1600/endpoints.png
 Is this part of an I/O release?

 Screenshot sample attached.

  --
 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/**ms**g/google-appengine/-/**cA8hVE9iY**
 pcJhttps://groups.google.com/d/msg/google-appengine/-/cA8hVE9iYpcJ
 .

 To post to this group, send email to google-appengine@googlegroups.*
 ***com google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscribe@**g**ooglegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group**/google-appengine?hl=enhttp://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 google-appengine@googlegroups.com.
 To unsubscribe from this group, send email to
 google-appengine+unsubscribe@**g**ooglegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group**/google-appengine?hl=enhttp://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 view this discussion on the web visit https://groups.google.com/d/**
 msg/google-appengine/-/**qC8lh4Gfn8gJhttps://groups.google.com/d/msg/google-appengine/-/qC8lh4Gfn8gJ
 .

 To post to this group, send email to 
 google-appengine@googlegroups.**comgoogle-appengine@googlegroups.com
 .
 To unsubscribe from this group, send email to
 google-appengine+unsubscribe@**googlegroups.comgoogle-appengine%2bunsubscr...@googlegroups.com
 .
 For more options, visit this group at http://groups.google.com/**
 group/google-appengine?hl=enhttp://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 view this discussion on the web visit
 https://groups.google.com/d/msg/google-appengine/-/buKREK4jKSwJ.

 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.




-- 
Dan Holevoet
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

Re: [google-appengine] Urgent Client Position :: Java Developer - Work Location: Madison, WI

2012-05-23 Thread Dan Holevoet
Yes, sorry about this. I reported the previous messages as spam, which used
to remove the post *and* ban the poster. Unfortunately, it looks like the
ban didn't occur, so he kept posting. I've manually banned the account, so
this should stop.

Thanks,
Dan

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

 Can we ban this asshat already?

 I wouldn't object to GAE-related recruiters, but this guy is just spamming
 the list with garbage.

 Jeff


 On Wed, May 23, 2012 at 9:25 AM, sai girish girishs...@gmail.com wrote:

 *Hi,*

 *This is Thomas Fedrick, - Recruitment and Resources from SancroSoft USA
 Inc.*

 We have an urgent requirement as follows:

 Please reply to this email with the latest copy of your resume in MS-Word
 Format with the following details to 
 *tho...@sancrosoftusa.com*tho...@sancrosoftusa.com

 Full Name :
 Location :
 Contact Number :
 Email :
 Availability :
 Rate / Hour :
 Visa Status :

 *Requirement Details** :--*

 *Job Code : 157621*

 *Java Developer*

 Work Location: Madison, WI
 Duration : 3-6 Months+ Contract

 Rate: $40/hr C2C Max

 Client : Wipro

 Note : Any Visa Status is fine

 Basic Java Developer

 Good Experience in Java/ J2EE is required

 Total of 4+ years of experience.







 *Thanks  Regards*

 *Thomas Fedrick**
 **Recruiting Specialist IT Services*

 *[image: Description: Description: Description: Description:
 Description: Description: cid:image001.jpg@01CD14F0.B169F430] [image:
 Description: Description: Description: Description: Description:
 Description: cid:image002.jpg@01CD14F0.B169F430] *

 * **The power of focus*

 *SancroSoft USA INC*

 *4944 Sunrise Blvd, Suite B-4 || Fair Oaks, CA 95628
 Phone : 916-671-5559*  ||* 916-671-5584 *||* Fax: 916-200-0305*
 *E-Mail :* *tho...@sancrosoftusa.com* tho...@sancrosoftusa.com || *
 www.sancrosoftusa.com* http://www.sancrosoftusa.com/
 *
 We place professionals in contract, contract-to-hire and full-time
 employment positions *

 *across all IT and Engineering disciplines, **nationwide*

 Stay Connected:

 [image: Description: Description: Description: Description: Description:
 Description: 
 cid:image003.png@01CD14F0.B169F430]http://www.linkedin.com/in/Thomasfedrick

 [image: Description: Description: Description: Description: Description:
 Description: 
 cid:image004.png@01CD14F0.B169F430]http://www.facebook.com/people/Thomas-Fedrick/10156958548

 [image: Description: Description: Description: Description: Description:
 Description: 
 cid:image005.png@01CD14F0.B169F430]https://twitter.com/#%21/thomasfedrick99

 For More Job Openings , Please Visit my blog   [image: Description:
 Description: Description: Description: Description: Description:
 http://t0.gstatic.com/images?q=tbn:ANd9GcTtrxGMSDzmqNcd78ZgJEjlJHrdvfl3wZ7N2W02bC6UwOEQJQUO]http://thomassancrosoftusa.blogspot.in/

 The information contained in this email message is intended only for the
 personal and confidential use of the recipient(s) named above. The message
 may be privileged and confidential and protected from disclosure. If the
 reader of this message is not the intended recipient or an agent
 responsible for delivering it to the intended recipient, you are hereby
 notified that you have received this document in error and that any review,
 dissemination, distribution, copying of this message is strictly
 prohibited. If you have received this communication in error, please notify
 us immediately by email and delete the original message.

 --
 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.




-- 
Dan Holevoet
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] App Engine 1.6.6 Released

2012-05-22 Thread Dan Holevoet
Hi everyone,

In case you don't follow the blog, we've just announced the release of
the 1.6.6 SDK: 
http://googleappengine.blogspot.com/2012/05/166-sdk-released.html.
I'd encourage you to check out the post for all the details.

An important note for new users: as part of the Master/Slave datastore
migration, as of this release, new users will only be able to create
applications using the High Replication Datastore (HRD).

Thanks,
Dan

-- 
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: Unable to deploy to GAE

2012-05-18 Thread Dan Holevoet
Hi everyone,

If you're still experiencing this issue, please comment here:
http://code.google.com/p/googleappengine/issues/detail?id=7535 and provide
your app ID and the time of your most recent failed deployment.

Thanks,
Dan

On Fri, May 18, 2012 at 10:00 AM, Yin Liu liu...@gmail.com wrote:

 Mine is Java app. It seems this issue is not language specific...


 On Friday, May 18, 2012 9:52:42 AM UTC-7, Stephen Lewis wrote:

 For what it's worth, I'm seeing what looks like the same problem with a
 Python app. I've reported it as issue 
 7536http://code.google.com/p/googleappengine/issues/detail?id=7536
 .

 Stephen

 On Friday, 18 May 2012 17:38:37 UTC+1, Yin Liu wrote:

 I found I am unable to deploy to GAE with the following error. The GAE
 instance that I am going to deploy is a billing enabled and I am still
 within my daily budge. Please help to resolve this issue since I need to
 deploy a very important server update today.

 Unable to update:
 com.google.appengine.tools.**admin.HttpIoException: Error posting to
 URL: https://appengine.google.com/**api/appversion/clonefiles?app_**
 id=aos-prod-1version=1-1-**20120516https://appengine.google.com/api/appversion/clonefiles?app_id=aos-prod-1version=1-1-20120516;
 500 Internal Server Error

 htmlhead
 meta http-equiv=content-type content=text/html;charset=**utf-8
 title500 Server Error/title
 /head
 body text=#00 bgcolor=#ff
 h1Error: Server Error/h1
 h2The server encountered an error and could not complete your
 request.pIf the problem persists, please A HREF=
 http://code.google.com/**appengine/community.htmlhttp://code.google.com/appengine/community.html
 **report/A your problem and mention this error message and the
 query that caused it./h2
 h2/h2
 /body/html

 at com.google.appengine.tools.**admin.**AbstractServerConnection.**
 send1(**AbstractServerConnection.java:**285)
  at com.google.appengine.tools.**admin.**AbstractServerConnection.send(*
 *AbstractServerConnection.java:**245)
 at com.google.appengine.tools.**admin.**AbstractServerConnection.post(**
 AbstractServerConnection.java:**224)
  at com.google.appengine.tools.**admin.AppVersionUpload.send(**
 AppVersionUpload.java:606)
 at com.google.appengine.tools.**admin.AppVersionUpload.**
 cloneFiles(AppVersionUpload.**java:470)
  at com.google.appengine.tools.**admin.AppVersionUpload.**
 beginTransaction(**AppVersionUpload.java:430)
 at com.google.appengine.tools.**admin.AppVersionUpload.**
 doUpload(AppVersionUpload.**java:122)
  at com.google.appengine.tools.**admin.AppAdminImpl.doUpdate(**
 AppAdminImpl.java:328)
 at com.google.appengine.tools.**admin.AppAdminImpl.update(**
 AppAdminImpl.java:52)
  at com.google.appengine.eclipse.**core.proxy.**
 AppEngineBridgeImpl.deploy(**AppEngineBridgeImpl.java:400)
 at com.google.appengine.eclipse.**core.deploy.DeployProjectJob.**
 runInWorkspace(**DeployProjectJob.java:148)
  at org.eclipse.core.internal.**resources.**InternalWorkspaceJob.run(**
 InternalWorkspaceJob.java:38)
 at org.eclipse.core.internal.**jobs.Worker.run(Worker.java:**54)

  --
 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/-/wcd73KZ-U4gJ.

 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] Re: Outage - 503 error requests not returning

2012-05-01 Thread Dan Holevoet
Hi Mark,

We're investigating the issue and I'll reply with more details (and/or
resolution) when I know more.

Thanks,
Dan

On Tue, May 1, 2012 at 2:21 PM, Mark markrobertdav...@gmail.com wrote:

 Working again now -   
 https://appengine.google.**com/https://appengine.google.com/ loads
 - and requests working.   Looks like everything got reset (my instances are
 at 1 and dashboard cleared/reset).  Wonder how often these types of resets
 happen?


 On Tuesday, May 1, 2012 2:13:33 PM UTC-7, Mark wrote:

 I am getting a 503 error 'An unexpected failure has occurred. Please try
 again.' going to 
 https://appengine.google.**com/https://appengine.google.com/ my app 
 requests are not working (timing out).  Hopefully this is already
 being looked into.


  --
 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/-/w0RALXVJ0F4J.

 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.




-- 
Dan Holevoet
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.



Re: [google-appengine] Re: Outage - 503 error requests not returning

2012-05-01 Thread Dan Holevoet
Hi Mark,

It appears that the issue is resolved. If you continue to see errors,
please let us know.

Thanks,
Dan

On Tue, May 1, 2012 at 2:25 PM, Dan Holevoet danielholev...@google.comwrote:

 Hi Mark,

 We're investigating the issue and I'll reply with more details (and/or
 resolution) when I know more.

 Thanks,
 Dan

 On Tue, May 1, 2012 at 2:21 PM, Mark markrobertdav...@gmail.com wrote:

 Working again now -   
 https://appengine.google.**com/https://appengine.google.com/ loads
 - and requests working.   Looks like everything got reset (my instances are
 at 1 and dashboard cleared/reset).  Wonder how often these types of resets
 happen?


 On Tuesday, May 1, 2012 2:13:33 PM UTC-7, Mark wrote:

 I am getting a 503 error 'An unexpected failure has occurred. Please
 try again.' going to 
 https://appengine.google.**com/https://appengine.google.com/ my app 
 requests are not working (timing out).  Hopefully this is already
 being looked into.


  --
 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/-/w0RALXVJ0F4J.

 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.




 --
 Dan Holevoet
 Google Developer Relations




-- 
Dan Holevoet
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.