Python 的 urllib2.urlopen() 挂起与 Java Restlet 服务器的本地连接
我试图从 python 连接到本地运行的 Restlet 服务器,但连接无限挂起(或者如果我设置超时则超时)。
import urllib2
handle = urllib2.urlopen("http://localhost:8182/contact/123") # hangs
如果我在 shell 中使用 curl
打开上述 URL,结果会很快返回。如果我使用 urllib2 打开不同的本地服务(例如端口 8000 上的 Django Web 服务器),urllib2 工作正常。
我尝试过禁用防火墙(我在 OS X 上执行此操作)。我尝试将 localhost 更改为 127.0.0.1。除了用户代理之外,来自 Restlet 的 curl 和 urllib2 连接的日志看起来相同。
我的解决方法是通过 subprocess
调用 curl
,但我宁愿理解为什么会失败。
这是我的 Restlet 资源的外观:
public class ContactResource extends ServerResource {
@Get
public String represent() throws Exception {
return "<contact details>";
}
//....
}
如果您需要更多信息/代码,请告诉我
I'm trying to connect to a local running Restlet server from python, but the connection hangs infinitely (or times out if I set a timeout).
import urllib2
handle = urllib2.urlopen("http://localhost:8182/contact/123") # hangs
If I use curl
from a shell to open the above URL, the results return quickly. If I use urllib2 to open a different local service (e.g. a Django web server on port 8000), urllib2 works fine.
I've tried disabling firewall (I'm doing this on OS X). I've tried changing localhost to 127.0.0.1. The logs from Restlet for both the curl and urllib2 connection appear the same aside from the user-agent.
My workaround would be to just call curl
via subprocess
, but I'd rather understand why this is failing.
Here's how my Restlet Resource looks:
public class ContactResource extends ServerResource {
@Get
public String represent() throws Exception {
return "<contact details>";
}
//....
}
Let me know if you want more info/code
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我遇到了类似的问题,最终使用了 Requests 包。
I encountered the similar issues and ended up using the Requests package.
有 ProxyHandler ( http://docs.python.org/library/urllib2.html #urllib2.ProxyHandler ) 在 urllib2 中
尝试在 urlopen 之前将空字典传递给它
there is ProxyHandler ( http://docs.python.org/library/urllib2.html#urllib2.ProxyHandler ) in urllib2
try to pass empty dictionary to it before urlopen