[google-appengine] 'The requested URL / was not found on this server.'

2010-02-22 Thread davenaff
The last code upload was a month ago.  Nothing was changed on the site
or in the admin settings.

The website suddenly started returning a 404 with the error above (it
of course works fine in my local version).

Ideas?

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



[google-appengine] Re: 'The requested URL / was not found on this server.'

2010-02-22 Thread davenaff
My issue seems to be fixed now. I made no changes.

The problem must have been on Google's end.

On Feb 22, 5:07 pm, Ivan Pardo  wrote:
> Same problem.
>
> http://truxmap.appspot.com/
> I can access the admin panel and the cron jobs show that it stopped
> working at 4:03.  I wasn't anywhere near my PC and hadn't deployed
> since last night.  For some reason, the app is simply dead -- I cant
> access any part of it.  Last night I tried deploying 3 or 4 times but
> I got a 503 error every time so I gave up.  Since I noticed that my
> site is now dead, I've tried deploying twice and I've gotten a 503
> error once and a 403 (too many versions... i just deleted 1 version
> and i only have 3 versions anyway).  None of this makes any sense to
> me and is incredibly frustrating.
>
> On Feb 22, 4:59 pm, rasmus  wrote:
>
> > +1
> > This started GMT 0:00 (24:00 yesterday), and went on for nearly 30
> > mins.
> > Our logs show activity until 4:00:53 PM Google-log-time, and the next
> > transaction went through at 4:29:50 (a retry from an external system).
>
> > We're in Europe (Sweden)
>
> > On Feb 23, 1:36 am, davenaff  wrote:
>
> > > The website suddenly started returning a 404 with the error above (it
> > > of course works fine in my local version).
>
> > > Ideas?

-- 
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-appeng...@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] Remote XML documents being truncated by GAE

2010-02-27 Thread davenaff
I have a simple service that requests a remote XML document, formats
it and displays it.

Recently, I began to see some of the XML documents truncated. It
consistently happens at character 1048544.  This of course causes my
SAX parser to fail.

In dev (using the SDK), it works fine and full documents are handled
just fine, so this problem seems to be exclusive to the GAE production
environment.

The App receives very little traffic.

Am I hitting some App Engine limit? Other ideas?

-- 
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-appeng...@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: Remote XML documents being truncated by GAE

2010-02-27 Thread davenaff
It isn't #1, but I bet it is #2.

I'm using urllib and I didn't realize that Google had modified the
library to use urlfetch underneath.

Thanks for the pointer.

On Feb 27, 1:49 am, Sylvain  wrote:
> 30 seconds response limit 
> ?http://code.google.com/intl/fr/appengine/docs/python/runtime.html#The...
>
> or the URL Fetch deadline limit (5s by 
> default)http://code.google.com/intl/fr/appengine/docs/python/urlfetch/fetchfu...
>
> Else I don't know.
>
> On Feb 27, 9:53 am, davenaff  wrote:
>
> > I have a simple service that requests a remote XML document, formats
> > it and displays it.
>
> > Recently, I began to see some of the XML documents truncated. It
> > consistently happens at character 1048544.  This of course causes my
> > SAX parser to fail.
>
> > In dev (using the SDK), it works fine and full documents are handled
> > just fine, so this problem seems to be exclusive to the GAE production
> > environment.
>
> > The App receives very little traffic.
>
> > Am I hitting some App Engine limit? Other ideas?

-- 
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-appeng...@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: Remote XML documents being truncated by GAE

2010-02-28 Thread davenaff
Right, that makes more sense - the character that gets truncated is
consistently the same, even across various documents.

Thanks!

On Feb 27, 6:44 pm, Wooble  wrote:
> It's neither.  All API responses are limited to 1MB, including
> urlfetch.
>
> On Feb 27, 5:42 am, davenaff  wrote:
>
> > It isn't #1, but I bet it is #2.
>
> > I'm using urllib and I didn't realize that Google had modified the
> > library to use urlfetch underneath.
>
> > Thanks for the pointer.
>
> > On Feb 27, 1:49 am, Sylvain  wrote:
>
> > > 30 seconds response limit 
> > > ?http://code.google.com/intl/fr/appengine/docs/python/runtime.html#The...
>
> > > or the URL Fetch deadline limit (5s by 
> > > default)http://code.google.com/intl/fr/appengine/docs/python/urlfetch/fetchfu...
>
> > > Else I don't know.
>
> > > On Feb 27, 9:53 am, davenaff  wrote:
>
> > > > I have a simple service that requests a remote XML document, formats
> > > > it and displays it.
>
> > > > Recently, I began to see some of the XML documents truncated. It
> > > > consistently happens at character 1048544.  This of course causes my
> > > > SAX parser to fail.
>
> > > > In dev (using the SDK), it works fine and full documents are handled
> > > > just fine, so this problem seems to be exclusive to the GAE production
> > > > environment.
>
> > > > The App receives very little traffic.
>
> > > > Am I hitting some App Engine limit? Other ideas?

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