How are you running django?

Are you going to a view at /client/, which then tries to access a different
view using urllib? IE, from the view at /client/, are you trying to access
the same server as you are running on?

Remember that the django 'runserver' web server is single threaded, single
process web server. It will not handle any requests until it has finished
processing the current one.

Cheers

Tom

On Tue, Nov 3, 2009 at 3:50 PM, Jose Blanca <jose.m.bla...@gmail.com> wrote:

>
> I've done some more tests. I have two views, one that serves the data
> and other that consumes it.
> If I point my browser to http://localhost:8000/server/ I get a
> response.
> If I point my browser to http://localhost:8000/client/ I do not get a
> response and django isn't able to provide one even if I open other
> browser and I point to http://localhost:8000/server/ .
> If I remove the urllib call from the client view everything works as
> it should.
> Still clueless looking in google.
> Best regards,
>
> Jose Blanca
>
>
> >
>

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to