Reputation: 2193
I am using Eclipse Indigo and Subversive SVN Team provider.
While i was generating projects using SVN repository i provided user name and password.
Now after a week i want to update some files, right click on a file, Team->Update, getting below error:
Some resources were not updated.
svn: connection refused by the server
svn: PROPFIND request failed on 'bla bla'
I think i must log in but from where, can you provide a path? Or what may the problem be? Thanks
Upvotes: 7
Views: 28842
Reputation: 10698
The following steps allow me to work from my corporate network through proxy server to update Eclipse ide plugins, and connect to corporate svn server:
1. Open Window > Preferences > Network Connection Settings
2. Select Active Provider to "Manual"
3. Set proxy settings for HTTP/HTTPS (click Edit…)
4. Clear SOCKS proxy if it is set (select SOCKS row, click "Clear" button)
5. Add host svn.srv.com in Proxy bypass if svn.srv.com is within intranet
6. Apply and optionally restart Eclipse
Note: replace proxy.srv.com, and svn.srv.com with your actual urls
See answer also
Upvotes: 2
Reputation: 1
Eclipse preferences. click on General>Network Connections -> change Active Provider value to Manual from the drop down. it worked for me too.
Upvotes: 0
Reputation: 329
Just open eclipse preferences. click on General>Network Connections.
Then according to the environment, set active provider and other proxy settings.
Upvotes: 9
Reputation: 504
Eclipse preferences. click on General>Network Connections -> change Active Provider
value to Manual
from the drop down. it worked for me.
Upvotes: 6
Reputation: 11
Check your eclipse network setting , add SVN server to bypass proxy list
Upvotes: 1
Reputation: 13858
The PROPFIND request failure probably means, Subversive cannot read contents from the server. A more detailed error message might be present in the Error log view (Window/Show view/Other..., and there it is in the General category, if I remember correctly).
Without a more detailed error message I would open the SVN Repository Exploring viewperspective, and try to update the Repository location settings (Right click, Properties), and there try to (1) validate the existing settings, and (2) update the username/password information.
Upvotes: 5