Re: parsing SOAP request

2011-01-27 Thread Anurag Chourasia
Could you try with this elif request.method == 'POST': print request.raw_post_data response = HttpResponse(mimetype='text/xml') response.write(request.raw_post_data) return response Regards, Anurag On Thu, Jan 27, 2011 at 1:07 PM, sami nathan

Re: parsing SOAP request

2011-01-26 Thread sami nathan
Hi Now i tried to parse the incoming request and send my response i tried in the following way by just sending what request came as it as response (ECHO server).and i am very newbie i dont know how to parse the request. I used ZSI sucessfully but in that requset was handled by itself but ZSI

Re: parsing SOAP request

2011-01-26 Thread Łukasz Rekucki
Hey, On 27 January 2011 07:32, sami nathan wrote: > Hi >    i am working web service i am getting SOAP(POST) request from client now > i am trying to parse the request xml and sending the response my soap > request is > > encoding=\'UTF-8\'?>

parsing SOAP request

2011-01-26 Thread sami nathan
Hi i am working web service i am getting SOAP(POST) request from client now i am trying to parse the request xml and sending the response my soap request is http://schemas.xmlsoap.org/soap/envelope/ ">http://flypp.infy.com/sms/v2010r1_0 ">12345343661t1p1p2DICT test']}> response now i want