当我尝试使用Eclispe安装新软件时,我总是会遇到以下错误。我使用的eclispe版本是面向开发人员的Eclipse。版本:靛蓝服务第2版
MarketplaceDiscoveryStrategy failed with an error
Unable to read repository at http://marketplace.eclipse.org/featured/api/p?product=org.eclipse.epp.package.jee.product&os=win32&java.version=1.8.0_05&client=org.eclipse.epp.mpc.core&product.version=1.4.2.20120131-1457&runtime.version=3.7.0.v20110110&ws=win32&nl=en_US.读出超时
我知道这个问题的发生是因为代理设置。
当我在谷歌搜索时,发现我们需要在Pereference -> General -> Internet连接中设置代理设置。

甚至通过在eclipse.ini文件中设置代理信息,我也尝试了另一种方法。
-Dorg.eclipse.ecf.provider.filetransfer.excludeContributors=org.eclipse.ecf.provider.filetransfer.httpclient
-Dhttp.proxyPort=****
-Dhttp.proxyHost=proxy.****.com
-Dhttp.proxyUser=******
-Dhttp.proxyPassword=******-Dhttp.nonProxyHosts=localhost|127.0.0.1
我能知道我犯了什么错误吗?有人能帮我吗。
发布于 2016-07-14 14:31:14
尝试将代理设置为手动,在之前设置它,在eclipse.ini中-vmargs之后设置
-Dorg.eclipse.ecf.provider.filetransfer.excludeContributors=org.eclipse.ecf.provider.filetransfer.httpclient4
-Dhttp.proxyPort=****
-Dhttp.proxyHost=proxy.****.com
-Dhttp.proxyUser=******
-Dhttp.proxyPassword=******
-vmargs
-Dorg.eclipse.ecf.provider.filetransfer.excludeContributors=org.eclipse.ecf.provider.filetransfer.httpclient4
-Dhttp.proxyPort=****
-Dhttp.proxyHost=proxy.****.com
-Dhttp.proxyUser=******
-Dhttp.proxyPassword=******https://stackoverflow.com/questions/31536518
复制相似问题