如何修复httplib.BadStatusLine异常
答案:1 悬赏:20 手机版
解决时间 2021-03-02 22:30
- 提问者网友:我是女神我骄傲
- 2021-03-02 10:05
如何修复httplib.BadStatusLine异常
最佳答案
- 五星知识达人网友:低音帝王
- 2021-03-02 11:17
1. 试着看看你的服务器实际上返回!它可能不是有效的HTTP响应。你喜欢这一个原始的HTTP请求发送到服务器:from socket import socket
host = 'localhost'
port = 80
path = "/your/url"
xmlmessage = "<port>0</port>"
s = socket()
s.connect((host, port))
s.send("POST %s HTTP/1.1\r\n" % path)
s.send("Host: %s\r\n" % host)
s.send("Content-Type: text/xml\r\n")
s.send("Content-Length: %d\r\n\r\n" % len(xmlmessage))
s.send(xmlmessage)
for line in s.makefile():
print line,
s.close()
响应应该像这样:HTTP/1.1 200 OK
<response headers>
<response body>
host = 'localhost'
port = 80
path = "/your/url"
xmlmessage = "<port>0</port>"
s = socket()
s.connect((host, port))
s.send("POST %s HTTP/1.1\r\n" % path)
s.send("Host: %s\r\n" % host)
s.send("Content-Type: text/xml\r\n")
s.send("Content-Length: %d\r\n\r\n" % len(xmlmessage))
s.send(xmlmessage)
for line in s.makefile():
print line,
s.close()
响应应该像这样:HTTP/1.1 200 OK
<response headers>
<response body>
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯