Re: Receiving xml via HTTP POST

2008-12-01 Thread Daniel Roseman
On Dec 1, 12:48 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Sun, 2008-11-30 at 01:15 -0800, Daniel Roseman wrote: > > [...] > > > No doubt someone will correct me if I'm wrong, but I don't think there > > *is* any other way of receiving a file via POST except via a form. > > You gave an

Re: Receiving xml via HTTP POST

2008-12-01 Thread chefsmart
Daniel Roseman suggests a very simple and easy to implement solution. Malcolm Tredinnick explained the usage of request.POST and request.raw_post_data. I think I would like to keep it pure and go towards implementing django views that will access and process request.raw_post_data. The AIR app will

Re: Receiving xml via HTTP POST

2008-11-30 Thread Malcolm Tredinnick
On Sun, 2008-11-30 at 01:15 -0800, Daniel Roseman wrote: [...] > No doubt someone will correct me if I'm wrong, but I don't think there > *is* any other way of receiving a file via POST except via a form. You gave an answer, so it's going to look crabby to say this, but that isn't correct. You c

Re: Receiving xml via HTTP POST

2008-11-30 Thread Daniel Roseman
On Nov 30, 1:25 am, chefsmart <[EMAIL PROTECTED]> wrote: > Can someone throw a few ideas at me regarding this please... I'm sure > seasoned Django-ists could have really good ideas about this... > Thanks. > > On Nov 22, 10:06 pm, chefsmart <[EMAIL PROTECTED]> wrote: > > > Hi All, > > > I am creati

Re: Receiving xml via HTTP POST

2008-11-29 Thread chefsmart
Can someone throw a few ideas at me regarding this please... I'm sure seasoned Django-ists could have really good ideas about this... Thanks. On Nov 22, 10:06 pm, chefsmart <[EMAIL PROTECTED]> wrote: > Hi All, > > I am creating an Adobe AIR application that will interact with my > Django app. I a

Receiving xml via HTTP POST

2008-11-22 Thread chefsmart
Hi All, I am creating an Adobe AIR application that will interact with my Django app. I am currently trying out django-rest-interface that can be found on googlecode. However, there's too much behind-the-scenes stuff django-rest-interface (for the little amount of knowledge I have) and I need mor