Re: [google-appengine] GAE is missing requests

2011-07-13 Thread Nikolay Sohryakov
I'm trying to implement my handler for the OAuth2 protocol. I looked at 
google's implementation 
at google-api-python-client\oauth2client\appengine.py. It works 90% of the 
time. This part of my module is

application = webapp.WSGIApplication([
('/oauth2client', OAuth2Handler)
])


def main():
logging.getLogger().setLevel(logging.DEBUG)
run_wsgi_app(application)

I did it exactly like it done in google's module. And btw when i was using 
google's implementation it worked exactly in the same way. Some requests were 
missed.

-- 
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/-/Yfth3n8MQ2oJ.
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] GAE is missing requests

2011-07-12 Thread djidjadji
If you use Python API do you have the correct

if __name__== 'main':
main()

in your code

2011/7/12 Nikolay Sohryakov :
> Hi,
> Sometimes GAE is missing my requests and instead of the requested page i get
> a clean page in my browser! Can you fix it please? I've tested it in
> different browsers on different computers.
> Thank you.
>
> --
> 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/-/BumLr0219OwJ.
> 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] GAE is missing requests

2011-07-12 Thread Nikolay Sohryakov
Hi,

Sometimes GAE is missing my requests and instead of the requested page i get 
a clean page in my browser! Can you fix it please? I've tested it in 
different browsers on different computers.

Thank you.

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