标签: 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请求的同时到达服务器,以便发回适当的响应。
答案 0 :(得分:0)
也许这就是你要找的东西: http://www.voidspace.org.uk/python/articles/urllib2.shtml#data