merveotesi
merveotesi

Reputation: 2193

Eclipse Subversive "Connection Failed By Server"

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

Answers (6)

Jonathan L
Jonathan L

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

enter image description here

Upvotes: 2

user3283816
user3283816

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

TechGuy
TechGuy

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

Jeeri
Jeeri

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

Dhanushka Manjula
Dhanushka Manjula

Reputation: 11

Check your eclipse network setting , add SVN server to bypass proxy list

Upvotes: 1

Zoltán Ujhelyi
Zoltán Ujhelyi

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

Related Questions