Changes between Version 47 and Version 48 of XML-RPC
- Timestamp:
- Jan 25, 2010, 4:30:54 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
XML-RPC
v47 v48 32 32 """ 33 33 34 response = HttpResponse()35 34 if len(request.POST): 35 response = HttpResponse(mimetype="application/xml") 36 36 response.write(dispatcher._marshaled_dispatch(request.raw_post_data)) 37 37 else: 38 response = HttpResponse() 38 39 response.write("<b>This is an XML-RPC Service.</b><br>") 39 40 response.write("You need to invoke it using an XML-RPC Client!<br>")