[google-appengine] Channel API on iphone

2011-10-09 Thread Hariprasath Mohankumar
Hi,
I have developed a GAE application using the channels api. 
Im using channel presence notifications in my application to keep track of 
my clients. It works very well when the application is accessed from a 
laptop. However when i tried using it on my iphone i found that the channel 
disconnect notifications are happening after a delay of 2 to 3 minutes. Even 
if i close the socket manually using socket.close(), the post's doesnt 
happen with the iphone. However it works fine with the laptop that im 
using.. Any help on this is appreciated! 

Many Thanks,
Hariprasath Mohankumar

-- 
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/-/8T9dpr1sRZkJ.
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: Session time out..

2011-10-09 Thread Simon Knott
Is there any reason you want the timeout so low?  Also, is there any reason 
you can't specify this in the web.xml (assuming you don't want a 30 seconds 
timeout, of course)?

-- 
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/-/rxKcZODfLdYJ.
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: How to set 'timeout' I use urllib2.urlopen instead urlfetch?

2011-10-09 Thread Xi Shen
Thanks Tim :)

And to my amusement, this function is not added till SDK 1.5.3. Did Google 
never thought people needs to set the timeout value before? Or the urlfetch 
module has some advantages that most people choose to use it and avoided the 
issue?

-- 
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/-/nt22bMdZ_kIJ.
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: Prerelease SDK 1.5.5 available for download!

2011-10-09 Thread Damian del Rivero Lagunes
found it... it's inside google.appengine.api.files , the module is called 
gs.py

-- 
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/-/jD4Dk4GtCpoJ.
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: Session time out..

2011-10-09 Thread venkyvb
Any thoughts ideas in this regard ?

-- 
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/-/TxM9-uwDpusJ.
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: Prerelease SDK 1.5.5 available for download!

2011-10-09 Thread Damian del Rivero Lagunes
"We have released an experimental API that can write to Google Storage for
  Developers directly from App Engine."

Where can I find this Google Storage experimental API inside this 1.5.5 
release ?


-- 
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/-/oO9rZsA_4bMJ.
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] The Spiny Norman Test

2011-10-09 Thread Emlyn
A new test about AppEngine billing, following up from "The Amazing
Story of AppEngine and the Two Orders of Magnitude".

This one's called "The Spiny Norman Test".

http://appenginedevelopment.blogspot.com/2011/10/spiny-norman-test.html

-- 
Emlyn

http://my.syyn.cc - Synchonise Google+, Facebook, WordPress and Google
Buzz posts,
comments and all.
http://point7.wordpress.com - My blog
Find me on Facebook and Buzz

-- 
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: How to set 'timeout' I use urllib2.urlopen instead urlfetch?

2011-10-09 Thread Tim Hoffman
Hi 

Currently you set it globally with urlfetch.set_default_fetch_deadline(n)  
You can also query the current value with get_default_fetch_deadline

Rgds

Tim

-- 
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/-/QnSIhHZz77AJ.
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 set 'timeout' I use urllib2.urlopen instead urlfetch?

2011-10-09 Thread Timofey Koolin
Wait until next SDK will release - it will be support python 2.7

2011/10/9 Xi Shen 

> GAE currently uses python 2.5, and the urllib2.urlopen has a different
> signature than it is in python 2.7, that is in python 2.5 it does not
> support the 'timeout' argument. Can I just use
> the 'socket.setdefaulttimeout' ?
>
> I do not want to switch to urlfetch, because it make the unite test
> inconvenient.
>
> --
> 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/-/ybVWKrhivIYJ.
> 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.
>



-- 
С уважением,
Кулин Тимофей.

Телефон: +7 (4852) 974793
ICQ: 114902104
email: timo...@koolin.ru
Blog: http://timofey.koolin.ru

-- 
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] How to set 'timeout' I use urllib2.urlopen instead urlfetch?

2011-10-09 Thread Xi Shen
GAE currently uses python 2.5, and the urllib2.urlopen has a different 
signature than it is in python 2.7, that is in python 2.5 it does not 
support the 'timeout' argument. Can I just use 
the 'socket.setdefaulttimeout' ?

I do not want to switch to urlfetch, because it make the unite test 
inconvenient.

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