Re: Empty Response

2010-11-05 Thread Eric
Yep, that is what it was. Our SA did some Googling and found the solution to the problem. http://code.google.com/p/modwsgi/wiki/IssuesWithExpatLibrary Thanks for the help and thoughts. On Nov 5, 9:47 am, Eric wrote: > Actually, I just realized that Python is crashing silently during one > of m

Re: Empty Response

2010-11-05 Thread Eric
Actually, I just realized that Python is crashing silently during one of my method calls. But, this only happens when coming through Apache and not when I hit Django's own server directly. :( Thanks for the help! On Nov 5, 9:31 am, Eric wrote: > In "Live HTTPS headers", a FF plugin, I see this:

Re: Empty Response

2010-11-05 Thread Eric
In "Live HTTPS headers", a FF plugin, I see this: http://cstoolstest.tnc.org/search/search?q=conservation&collections=EAST%7CTEA&start=1 GET /search/search?q=conservation&collections=EAST%7CTEA&start=1 HTTP/ 1.1 Host: User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10.5; en-US; rv: 1.9

Re: Empty Response

2010-11-02 Thread adelein
You can easily look at the request/response by using firebug. TIP: Notice if there is a redirect. Sometimes depending on the config, for example, if django is set to append a / at the end, meaning it will do a redirect, then your request or response might be getting lost in the redirect (an HTTP 3

Re: Empty Response

2010-11-02 Thread Reinout van Rees
On 11/02/2010 09:29 PM, Eric wrote: I am returning a json structure in one of my views after the user performs a search when I only run Django's built in server. Following the asynchronous GET I get a response with the expected json structure which I can then use to populate the page. However,