Re: Recieving XML Documents over HTTP

2007-04-08 Thread Malcolm Tredinnick
On Sun, 2007-04-08 at 20:26 -0700, johnny wrote: > I just need to know how to get the xml document coming in over http. > Is it just regular request.Post? You are probably better off using request.raw_post_data in these cases. However, the best way to work this out is to construct a test case. Yo

Re: Recieving XML Documents over HTTP

2007-04-08 Thread johnny
I just need to know how to get the xml document coming in over http. Is it just regular request.Post? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django

Re: Recieving XML Documents over HTTP

2007-04-08 Thread johnny
This is what I need to do: Site will be recieving, orders from retailers ( which comes in as a xml with list of products), what products are required, quantity and such by them, and I need to process the xml and update the main company database. Thank you. --~--~-~--~~~

Re: Recieving XML Documents over HTTP

2007-04-08 Thread Laurie Harper
johnny wrote: > I am doing REST, xml over http (sending and receiving xml documents), Those are two different and unrelated concepts. > which is simpler for me than XML-RPC. I am having problem with > receiving xml documents. You'll need to provide a much more detailed description of what you

Re: Recieving XML Documents over HTTP

2007-04-07 Thread johnny
I am doing REST, xml over http (sending and receiving xml documents), which is simpler for me than XML-RPC. I am having problem with receiving xml documents. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django

Re: Recieving XML Documents over HTTP

2007-04-07 Thread Paul Childs
Not sure if this is what you are looking for, but this might be a place to start... http://code.djangoproject.com/wiki/XML-RPC On Apr 6, 8:19 pm, "johnny" <[EMAIL PROTECTED]> wrote: > This may be stupid question for an expert. But stupidity is in not > asking. > > How do I access the XML Documen

Recieving XML Documents over HTTP

2007-04-06 Thread johnny
This may be stupid question for an expert. But stupidity is in not asking. How do I access the XML Documents sent over to my server in Django View? Is it like regular request.POST? How large POST data can be sent before connection timing out? Thank you. --~--~-~--~~~-