如何通过Python中的HTTP请求发送XML?

时间:2012-05-23 13:36:32

标签: python xml httprequest

import urllib2
request = urllib2.Request("URL HERE", data="<port>0</port>",
                     headers={'Content-Type': 'application/xml'})
u = urllib2.urlopen(request)
response = u.read()

我试过这个,但发现XML永远不会进入服务器。我需要XML在HTTP请求的同时到达服务器,以便发回适当的响应。

1 个答案:

答案 0 :(得分:0)