我正在关注这个 Virtuoso Web Service 示例。我来自 POST 的响应的 .length 非零,但 .read() 为空。这仅在 POST 成功时发生。如果我故意犯错,我会得到一个非零的 .read()。
import httplib
url = 'lod.openlinksw.com'
xmlString = '''<?xml version="1.0"?>
<query xmlns="http://openlinksw.com/services/facets/1.0" inference="" same-as="">
<text>Seattle Mariners traveled all the way to Japan to watch</text>
<view type="text" limit="20" offset=""/>
</query>'''
xml = open('a.xml','w')
xml.write(xmlString)
xml.close()
xml = open('a.xml')
headers = {'Content-Type': 'text/xml',}
conn = httplib.HTTPConnection(url)
conn.request("POST", "/fct/service", xml, headers)
re = conn.getresponse()
conn.close()
data = re.read()
print re.reason, re.status, '| len:', re.length, '| read() len:', len(data)
返回...
OK 200 | len: 19902 | read() len: 0
如果您故意使 XML 格式错误(例如“query”>>“queryzzz”)...
Internal Server Error 500 | len: 0 | read() len: 340
我确定我只是在做一些愚蠢的事情。我的 19902 字节响应在哪里?