3. If you're running under Apache rather than the deveolpment server, did
you restart apache?  (The development server restarts the app when
you change the code, but the apache - mod_wsgi or apache - mod_python
scheme does not, and you are still running the old code.)

On Fri, Apr 2, 2010 at 1:30 PM, Antoni Aloy <antoni.a...@gmail.com> wrote:
> 1. Refresh your browser cache.
> 2. Make sure you're executing the right code. Have you tried to put a
> breakpoint?
> import pdb; pdb.set_trace()
>
> 2010/4/2 Pablo Cubico <pablocuadr...@gmail.com>:
>> Hi Guys!
>>
>> I'm new to Django AND Python, but I do have a long experience in
>> configuring Apache, and PHP programming.
>>
>> Now, I was testing this simple view:
>>
>> ---------------
>>
>> def get_value(request):
>>    return HttpResponse(3)
>>
>> ---------------
>>
>> It worked, it printed "3", everything ok.
>>
>> Now I changed it to:
>>
>> ------------
>>
>>
>> def get_value(request):
>>    f = urllib.urlopen('http://localhost/mywebservice')
>>    value = f.read()
>>    return HttpResponse(value)
>>
>> ------------
>>
>> The value now changes according to the "mywebservice" response (it's a
>> single numeric value). The web service works ok, accessing it from the
>> browser it reads: 82. I refresh: 85. Refresh again: 92. Everything ok.
>>
>> BUT the damn python powered view still returns "3".
>>
>> I added the @never_cache decorator but makes no difference.
>>
>> Any help?
>>
>> --
>> You received this message because you are subscribed to the Google Groups 
>> "Django users" group.
>> To post to this group, send email to django-us...@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.
>>
>>
>
>
>
> --
> Antoni Aloy López
> Blog: http://trespams.com
> Site: http://apsl.net
>
> --
> You received this message because you are subscribed to the Google Groups 
> "Django users" group.
> To post to this group, send email to django-us...@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.
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@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