访问 watson 检索并排在 Node 中的代理后面

Access watson retrieve and rank behind a proxy in Node

我需要知道是否可以在代理后面使用 R&R 服务。 看看下一部分,看看我的调查。 我正在使用的代码在我家工作。 (没有firewall/No代理,只有一个路由器)


我是从下面的代码开始的。 https://console.eu-gb.bluemix.net/catalog/starters/personality-insights-nodejs-web-starter

我尝试在本地执行它并且它正在使用以下配置来安装模块。

npm config set registry http://registry.npmjs.org
npm config set proxy http://x.x.x.x:xx
npm config set https-proxy http://x.x.x.x:xx
npm config set strict-ssl false
set http_proxy=http://x.x.x.x:xx
set https_proxy=http://x.x.x.x:xx
set HTTP_PROXY=http://x.x.x.x:xx
set HTTPS_PROXY=http://x.x.x.x:xx

随着它的运行,我开始尝试 R&R。但我只是遇到了一个错误。

Error searching for documents: Error: connect ETIMEDOUT 158.85.132.88:443

ip地址对应的地方gateway.watsonplatform.net

ping gateway.watsonplatform.net
PING gateway.watsonplatform.net (158.85.132.88) 56(84) bytes of data.

由于防火墙,ping 被阻止

在我的调查过程中,我发现在每次发送两个 ICMP 请求时执行 R&R 服务测试时。

可能是因为防火墙。但是为什么这个服务需要发送 ICMP 数据包?

简单回顾一下:

  1. 代码在没有 firewall/no 代理时有效
  2. Personality Insight 服务在 proxy/firewall
  3. 背后工作
  4. R&R 不是

EDIT

After some investigations I've found that there was a bug in the Solr-client so it is currently impossible to make it work. More info here on this github issue.