1

Im using Eclipse Galileo and have installed Subclipse. I looked at the svn repo url at http://www.liferay.com/web/brian.chan/blog/-/blogs/changes-to-anonymous-access-to-liferay-s-svn and then tried to get Liferay from their SVN repository in Eclipse, using svn://svn.liferay.com/repos/public --username guest,but i get the following error message:

Error validating location: "org.tigris.subversion.javahl.ClientException:No connection could be made because the target machine actively refused it.
svn: Cant connect to host 'svn.liferay.com':No connection could be made because the target machine actively refused it

Any way to fix this ?

Thank You

Tyler
  • 21,762
  • 11
  • 61
  • 90
Tim
  • 51
  • 1
  • 1
  • 4

2 Answers2

1

Try removing '--username guest' from the URL string. I could connect successfully to it using Eclipse and SubClipse plugin. Add the 'guest' user with empty password in the credential form in the next step. It would also be appropriate to check that your DNS server and internet connectivity are working correctly.

Benjamin Ortuzar
  • 7,801
  • 6
  • 41
  • 46
  • Thanks for the reply Benjamin. Even if i remove the username part and just use svn://svn.liferay.com/repos/public, i get the same error. – Tim Dec 14 '09 at 12:28
  • I have setup Eclipse to use the JavaHL client in the Eclipse->Team->SVN preferecens. Do you have the same? Do you see 205.134.240.1.1 when you ping svn.liferay.com? – Benjamin Ortuzar Dec 14 '09 at 12:40
0

It works now ! :).Just had to change svn://svn.liferay.com/repos/public to http://svn.liferay.com/repos/public.

Tim
  • 1