Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Robert Kluin
eceiver on Wordpress, that way you can send the >> data >> >> and have PHP do the waiting. (that’s assuming you are adding not >> querying). >> >> >> >> >> >> >> >> >> >> >> >> From: google-appengine@googlegrou

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Emlyn
ne@googlegroups.com > >> [mailto:google-appengine@googlegroups.com] On Behalf Of Emlyn > >> Sent: Tuesday, May 24, 2011 9:29 PM > >> To: google-appengine@googlegroups.com > >> Subject: Re: [google-appengine] Application Error: 5 when calling > >> WordPress

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Robert Kluin
;> From: google-appengine@googlegroups.com >> [mailto:google-appengine@googlegroups.com] On Behalf Of Emlyn >> Sent: Tuesday, May 24, 2011 9:29 PM >> To: google-appengine@googlegroups.com >> Subject: Re: [google-appengine] Application Error: 5 when calling >> W

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Emlyn
@googlegroups.com [mailto: > google-appengine@googlegroups.com] *On Behalf Of *Emlyn > *Sent:* Tuesday, May 24, 2011 9:29 PM > *To:* google-appengine@googlegroups.com > *Subject:* Re: [google-appengine] Application Error: 5 when calling > WordPress via xmlrpclib > > > > It&#

RE: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Brandon Wirtz
rying). From: google-appengine@googlegroups.com [mailto:google-appengine@googlegroups.com] On Behalf Of Emlyn Sent: Tuesday, May 24, 2011 9:29 PM To: google-appengine@googlegroups.com Subject: Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib It's already

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Robert Kluin
Hi Emlyn, You'll be subject to the same RPC limits. Two solutions for increasing the deadline: 1) use a pre-call hook to set a longer deadline on the URL Fetch RPC, 2) modify the lib you're using to directly use URL Fetch and bump up the deadline. Robert On Wed, May 25, 2011 at 00:29,

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Emlyn
It's already in a task. Also, I'm not directly using urlfetch; I'm using pyblog.py which uses xmlrpclib which I guess ultimately uses urlfetch, so I can't set the deadline directly (although there do seem to be timeout mechanisms, they just don't work past 5 seconds as GAE cuts the call off). One

Re: [google-appengine] Application Error: 5 when calling WordPress via xmlrpclib

2011-05-24 Thread Robert Kluin
Hi Emlyn, You could move the request to a task, then increase the deadline. That would probably be the easiest solution. http://code.google.com/appengine/docs/python/urlfetch/fetchfunction.html Robert On Tue, May 17, 2011 at 09:13, Emlyn wrote: > Hi, > > I'm struggling with talking t