[google-appengine] Re: Sitewide 500 errors

2010-02-02 Thread Matthew Trinneer
I'm seeing the same thing this morning too.  Nothing in my logs, but
site is inaccessible using Safari 4.0.4 (www.bijout.com)

Error Message

Error: Server Error

The server encountered an error and could not complete your request.
If the problem persists, please report your problem and mention this
error message and the query that caused it.

/Error Message

On Feb 2, 8:00 am, Jesse Grosjean je...@hogbaysoftware.com wrote:
 I'm seeing the following error on all of my app engine sites
 including:

 https://appengine.google.com/http://www.hogbaysoftware.com/http://www.simpletext.ws/
 ...

 -
 Error: Server Error

 The server encountered an error and could not complete your request.
 If the problem persists, please report your problem and mention this
 error message and the query that caused it.

-- 
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] different urlfetch behaviour on development and production servers: URLs with the characters: ( or )

2009-05-03 Thread Matthew Trinneer

Hi All,

When attempting to load the following URL on the development server I
am successfully able to retrieve the expected result.  However, when
attempting to load the same URL in the production environment I am not
receiving the same response.  I have posted 2 examples.  The first
works exactly the same on both development and production.  The second
only returns the expected result on the development.

Working as expected:

url = 'http://dbpedia.org/resource/Companion'
result = urlfetch.fetch(url=url, headers={'Accept': 'application/rdf
+xml'})


Different behaviour on development vs. production.

url = 'http://dbpedia.org/resource/Companion_(manga)'
result = urlfetch.fetch(url=url, headers={'Accept': 'application/rdf
+xml'})


Has anyone run into anything like this?

Thanks, Matt


--~--~-~--~~~---~--~~
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] Data Modelling Advice - Blog Tagging System

2008-11-20 Thread Matthew Trinneer

Am wondering if anyone might provide some conceptual advice on an
efficient way to build a data model to accomplish the simple system
described below.  Am somewhat new to thinking in a non-relational
manner and want to try avoiding any obvious pitfalls.  It's my
understanding that a basic principal is that storage is cheap, don't
worry about data duplication as you might in a normalized RDBMS.

What I'd like to model is:

A blog article which can be given 0-n tags. Many blog articles can
share the same tag.  When retrieving data would like to allow
retrieval of all articles matching a tag.

My normal mindset would be to create a many-to-may relationship
between tags and blog articles.  However, I'm thinking in the context
of GAE that this would be expensive, although I have seen examples of
it being done.

Any suggestions on the most efficient way to approach this on GAE?

--~--~-~--~~~---~--~~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en
-~--~~~~--~~--~--~---