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

I am trying to checkout files using subversion on RedHat Linux but the checkout fails saying URL (http/https) is malformed or the scheme or host or path is missing.

I am not sure now what more configuration/setup is needed?

I am able to ping the http(s) site properly.

Command: svn checkout --username kdeshpa https://teamforge.wal-mart.com/svn/repos/demo

Anyhelp would be highly appreciated.

I am new to subversion. Not sure where to look for logs.

If i give command (svn log) it cribs saying (svn: '.' is not a working copy).

link|improve this question

35% accept rate
1  
Could you give an example of the URL? – D.Shawley Sep 11 '09 at 21:28
1  
The whole command line would be even better. – Inshallah Sep 11 '09 at 21:32
If you have access to the SVN server, check the apache access_log and error_log ... see how the URLs are getting passed in. Report what the logs say here. – Chris J Sep 11 '09 at 21:41
Check your proxy or firewall isn't blocking it. You may be having authentication issues. – Randolph West Sep 14 '09 at 13:52
For fun, try connecting to site using TortoiseSVN. – J. Polfer Sep 14 '09 at 13:57
show 1 more comment
feedback

3 Answers

It looks that SSL handshake issue. Had to build openssl with "no-asm" configuration and it was able to checkout on secured layer.

link|improve this answer
That's freaky! Did you report a bug to RedHat? – Peter Cordes Dec 10 '09 at 0:23
feedback

(Oddly, I am not allowed to comment on this issue, so instead I will answer.)

Have you tried to install the neon package? You can find the source here: http://www.webdav.org/neon/

When I compiled an SVN client from scratch recently, I was unable to connect to an SVN repo using HTTP. After installing neon, I recompiled and my SVN client was able to connect to an SVN repo using HTTP.

link|improve this answer
Check the FAQ on the reputation requirements for commenting. As your reputation increases, more functionality is provided to you. – Tim McNamara Aug 2 '10 at 7:51
feedback

You need to have neon installed, and compiled with SSL support. On Solaris I pass the following flags to Neon's configure script: --enable-threadsafe-ssl=posix --with-ssl=openssl

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.