On Fri, 2007-04-06 at 01:14 +0000, johnny wrote: > This is simple question. When you send xml over http, do you just > pass string varible containing the xml document, as a variable to the > template?
There might not be any need to use a template here. If you already have the XML document as a string, just return an HttpResponse() instance from your view. One of the parameters HttpResponse takes is the content for the response (look in django/http/__init__.py for the details or in the documentation). Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] 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 -~----------~----~----~----~------~----~------~--~---

