> I have a problem with the development server. I don't know if this > behavior is right or if there is a problem. > I have a view which is triggered throught an url. In this view I use > urllib2. If I start the view with the development server the process > is never ends. But if I start the view with the apache environment > there is no problem
I don't know the details of the development server, but I've done something similar, and simply found that you cannot have one request within another on the same port with the development server. (Looks like Apache can live with that.) The easiest solution I've found is to run another development server on another port, and then 'run' your view from there. You can then also conveniently track both requests for each development server. > def any_view(request) > import urllib2 > req = urllib2.Request(url='http://localhost:8000/url/') > content = urllib2.urlopen(req).read() > .... > > Is there a problem if I use/read a url and the current request isn't > completed? > --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---