On Sat, Jun 19, 2010 at 6:32 AM, Börni <boe...@gmail.com> wrote:
> Hello together,
> i'm using this snippet http://djangosnippets.org/snippets/979/ .
>
> This shows an “No CSRF or session cookie.” error. I need to know how
> to decorate my view
>
> my_soap_service = MySoapService()
>
> with csrf_exempt decorator.
> I've no idea how to use the decorator in this context.

Try:
my_soap_service = csrf_exempt(my_soap_service)

~Rolando

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