Python 的 urllib2.urlopen() 挂起与 Java Restlet 服务器的本地连接

发布于 2024-12-18 15:04:33 字数 729 浏览 0 评论 0原文

我试图从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷默言语 2024-12-25 15:04:33

我遇到了类似的问题,最终使用了 Requests 包

I encountered the similar issues and ended up using the Requests package.

寄离 2024-12-25 15:04:33

有 ProxyHandler ( http://docs.python.org/library/urllib2.html #urllib2.ProxyHandler ) 在 urllib2 中

尝试在 urlopen 之前将空字典传递给它

urllib2.ProxyHandler([])
handle = urllib2.urlopen("http://localhost:8182/contact/123")

there is ProxyHandler ( http://docs.python.org/library/urllib2.html#urllib2.ProxyHandler ) in urllib2

try to pass empty dictionary to it before urlopen

urllib2.ProxyHandler([])
handle = urllib2.urlopen("http://localhost:8182/contact/123")
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文