up vote 7 down vote favorite
share [g+] share [fb]

I'm using the latest version of Eclipse Galileo and I have to access the web from behind a proxy. I see where I can set the internet settings to manual and specify a proxy but there's no way to specify my authentication credentials that I can see and it doesn't prompt me for them either. So I'm not able to hit any plugin update sites etc... Does anyone else have this issue or know a good workaround? Or is there a better version of Eclipse to use?

link|improve this question

feedback

5 Answers

up vote 9 down vote accepted

In Eclipse, go to Window → Preferences → General → Network Connections. In the Active Provider combo box, choose "Manual". In the proxy entries table, for each entry click "Edit..." and supply your proxy host, port, username and password details.

Eclipse screenshot

link|improve this answer
wouldn't that involve putting my password in plain text? also what is the format of the string? – Jeremy T Dec 21 '09 at 16:28
1. If you want Eclipse (or any tool, for that matter) to perform authentication for you, then you have to tell it your password :-) Why is that a problem? 2. The format of which string? – Eli Acherkan Dec 21 '09 at 16:35
thanks I just missed that dialog somehow. – Jeremy T Dec 21 '09 at 17:00
2  
Eclipse 3.4+ will automatically encrypt your proxy authentication info using a master password as part of its secure storage feature. help.eclipse.org/helios/index.jsp?topic=/… – Noel Oct 27 '10 at 14:37
feedback

If you have still problems, try deactivating ("Clear") SOCKS

see: https://bugs.eclipse.org/bugs/show_bug.cgi?id=281384 "I believe the reason for this is because it uses the SOCKS proxy instead of the HTTP proxy if SOCKS is configured."

link|improve this answer
Indeed. I suffered with Eclipse 3.6 behind a corporate proxy with this issue. Clearing password for SOCKS solved the problem. Thanks – Frederic Conrotte Jan 3 '11 at 10:29
Excellent, this worked a treat for me! – djhworld Aug 10 '11 at 8:48
feedback

Here is the workaround:

In eclipse.ini write the following:

-vmargs
-Dorg.eclipse.ecf.provider.filetransfer.excludeContributors= org.eclipse.ecf.provider.filetransfer.httpclient
-Dhttp.proxyHost=*myproxyhost*
-Dhttp.proxyPort=*myproxyport*
-Dhttp.proxyUser=*proxy username*
-Dhttp.proxyPassword=*proxy password*
-Dhttp.nonProxyHosts=localhost|127.0.0.1

After starting eclipse verify, that you use the Manual proxy method.

HTH

link|improve this answer
feedback

This sometime works, sometime no.

I have installed 1 Eclipse - works.

Installed second - doesn't work.

And I cann't figure why!

After some time may be found a solution.

Need delete all setting for proxy (included credentials). And re-insert for new.

After this for me getting work.

link|improve this answer
feedback

Try to fill only the HTTP schema

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.