开发者

python httplib timeout to localhost

I have a local server running on port 6868. Technically it's node.js-driven micro-site built with express. It actually has a single '/push' constroller reading some data and writing to console (+ some specific not question-related operatons).

When using curl

h100:~ eugenemirotin$ curl -i http://127.0.0.1:6868/push -d password=pwd
HTTP/1.1 200 OK
X-Powered-By: Express
Connection: keep-alive
Transfer-Encoding: chunked

and node.js wites to console as supposed.

When using python and httplib:

h100:~ eugenemirotin$ python
Python 2.7.1 (r271:86832, Jan  6 2011, 00:55:07) 
[GCC 4.2.1 (Apple Inc. build 5664)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> import httplib, urllib
>>> params = {'password': 'pwd', 'type': 'msg', 'channel': 'chat', 'client_id': '', 'body': {'text': 'test test'}}
>>> params
{'body': {'text': 'test test'}, 'password': 'pwd', 'type': 'msg', 'client_id': '', 'channel': 'chat'}
>>> params = urllib.urlencode(params)
>>> params
'body=%7B%27text%27%3A+%27test+test%27%7D&password=pwd&type=msg&client_id=&channel=chat'
>>> conn = httplib.HTTPConnection('http://127.0.0.1:6868')
>>> conn.request("POST", "/push", params)
Traceback (most recent call last):
  Fi开发者_如何学JAVAle "<stdin>", line 1, in <module>
  File    "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 941, in request
    self._send_request(method, url, body, headers)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 975, in _send_request
    self.endheaders(body)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 937, in endheaders
    self._send_output(message_body)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 797, in _send_output
    self.send(msg)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 759, in send
    self.connect()
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/httplib.py", line 740, in connect
    self.timeout, self.source_address)
  File "/opt/local/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/socket.py", line 571, in create_connection
    raise err
socket.error: [Errno 60] Operation timed out
>>> quit()

The difference in parameters is not essential - the request doesn't even get to node.js server.

Is it httplib bug, or am I doing something wrong?


Remove http:// from the address.

This:

conn = httplib.HTTPConnection('http://127.0.0.1:6868')

Should be:

conn = httplib.HTTPConnection('127.0.0.1:6868')


You can simplify your code a lot:

import urllib, urllib2
params = {'password': 'pwd', 'type': 'msg', 'channel': 'chat', 'client_id': '', 'body': {'text': 'test test'}}    
params = urllib.urlencode(params)
res = urllib2.urlopen('http://127.0.0.1:6868/push/', params)
data = res.read()
res.close()
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜