I really don\'t know what\'s going on with Eclipse 3.5 (3.5.0 or 3.5.1, same issues), but it\'s been now 2 days that I\'m struggling with Eclipse to find a way to make the p
In my eclipse Luna faced the same issue because of this URL https://sourceforge.net/projects/restfulplugin/files/site/
So i just Disabled the URL that was Shown in the Error From the Available Software Sites.
You may Check the URL or Try with the Updated URL reg to that Exception :)
I had similar problem. I changed Direct connection to Native and it worked.
Preferences → General → Network Connections.
We had tons of issues here, namely with the proxy support. We ended-up using Pulse: http://www.poweredbypulse.com/
Pulse has built-in support for a few plugin, however, you can add third-party plugin and even local jar file quite easily.
Strangely it does not always use the built-in Eclipse feature, so sometimes when Eclipse become difficult ( like in our case for the proxy business ), you can work-around it with Pulse.
Use the following setting and you will be all set. Go to Window --> Preference --> General --> Network Connection --> select Direct from drop down
Couple of weeks ago I stumbled upon a Problem with Java and a MySQL-Connection. The Problem being that no Connection could be established. Anyway, the fix was to add -Djava.net.preferIPv4Stack=true
to the command line.
I just added the same line to eclipse.ini and as it turns out, it also fixes this issue for me. The option name is pretty self-explainitory: It prefers the IPv4 stack over the IPv6 stack. So this solution may not be viable for everyone.