On 8/31/07, David Larlet <[EMAIL PROTECTED]> wrote:
> > request.method = request.REQUEST[_MIDDLEWARE_KEY].upper()
> > AttributeError: can't set attribute
> >

Hello David,

I don't have a mod_python install I can easily test on, but could you
try this for me:

request._req.method = request.REQUEST[_MIDDLEWARE_KEY].upper()

I don't know if the _req.method attribute is read-only as well... so
it might not work.

If that doesn't work, you can use:
request.META['REQUEST_METHOD'] = request.REQUEST[_MIDDLEWARE_KEY].upper()


Let me know which one works and I can try to come up with a
'works-everywhere' solution and update the snippet.

 - Ben

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to