Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 651341
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T22:09:07+00:00 2026-05-13T22:09:07+00:00

I am referring to this project by Jimmy Bogard: http://www.codeplex.com/AutoMapper The code repository site

  • 0

I am referring to this project by Jimmy Bogard: http://www.codeplex.com/AutoMapper

The code repository site is: http://code.google.com/p/automapperhome/source/checkout

The instructed checkout command is:
svn checkout http://automapperhome.googlecode.com/svn/trunk/ automapperhome-read-only

This does not work.

I have tried SlikSVN, Tortoise SVN, QSVN, and possibly others that I’ve forgotten about.

Client: Tortoise SVN

Url: svn://automapperhome.googlecode.com/svn/trunk/ automapperhome-read-only

result

Checkout ‘svn://automapperhome.googlecode.com/svn/trunk/ automapperhome-read-only’ into ‘C:\Development\MVC\automapper’
Can’t connect to host ‘automapperhome.googlecode.com’: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.


Client: SlikSVN

Command:

C:\Program Files\SlikSvn\bin>svn checkout http://automapperhome.googlecode.com/svn/trunk/ automapperhome-read-only c:development\automapper

Result:

svn: OPTIONS of ‘http://automapperhome.googlecode.com/svn/trunk‘: 200 OK (http://automapperhome.googlecode.com)

Command:

C:\Program Files\SlikSvn\bin>svn checkout svn://automapperhome.googlecode.com/svn/trunk/ automapperhome-read-only c:development\automapper

Result:

svn: Can’t connect to host ‘automapperhome.googlecode.com’: A connection attempt
failed because the connected party did not properly respond after a period of time,
or established connection failed because connected host has failed to respond.


I’m at a loss. Is there a default port I need to open on my router for this to work. I’m only behind my router’s firewall. Any help would be appreciated. Thanks.


Updated with additional commands attempted for sliksvn:

C:\Program Files\SlikSvn\bin>svn checkout svn://automapperhome.googlecode.com/svn/trunk/ c:development\automapper

svn: Can’t connect to host ‘automapperhome.googlecode.com’: A connection attempt
failed because the connected party did not properly respond after a period of time,
or established connection failed because connected host has failed to respond.

C:\Program Files\SlikSvn\bin>svn checkout svn://automapperhome.googlecode.com/svn/trunk/

svn: Can’t connect to host ‘automapperhome.googlecode.com’: A connection attempt
failed because the connected party did not properly respond after a period of time,
or established connection failed because connected host has failed to respond.

C:\Program Files\SlikSvn\bin>svn checkout svn://automapperhome.googlecode.com/svn/trunk/automapperhome-read-only c:development\automapper

svn: Can’t connect to host ‘automapperhome.googlecode.com’: A connection attempt
failed because the connected party did not properly respond after a period of time,
or established connection failed because connected host has failed to respond.

*************UPDATE 3********************
Odd. I run the simple checkout command on Qsvn at work and it pulls everything in just fine. Something is definitely wrong on my home machine’s setup, but I’m not sure what. I’ll look into utilizing Fiddler to examine what’s going on. Thanks for your help guys. I know this has probably frustrated you as much as it has me. Nothing irks worse than things not working when they should, but I’m sure there’s some oddity on my end that’s doing this.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T22:09:08+00:00Added an answer on May 13, 2026 at 10:09 pm

    Your problem is that you assume that the repository URL is http://automapperhome.googlecode.com/svn/trunk/ automapperhome-read-only. The correct URL is http://automapperhome.googlecode.com/svn/trunk/. The automapperhome-read-only part in the SVN checkout command is the target directory, not part of the URL.

    Update: Your other mistake is that you are using the SVN:// protocol for the checkout URL. You should be using the HTTP:// protocol. The only attempt you show in your question with the HTTP:// protocol is the first SlikSVN one, where you specify too many options; all other attempts use SVN://. Here’s the (partial) output from SlikSVN on my machine:

    C:\Users\francip\Desktop\Projects>svn checkout svn://automapperhome.googlecode.com/svn/trunk/ something
    svn: Can't connect to host 'automapperhome.googlecode.com': A connection attempt failed because the connected party did not properly respond after a period of time, o
    r established connection failed because connected host has failed to respond.
    
    C:\Users\francip\Desktop\Projects>svn checkout http://automapperhome.googlecode.com/svn/trunk/ something
    A    something\tools
    A    something\tools\subversion
    A    something\tools\subversion\ssleay32.dll
    A    something\tools\subversion\license
    

    The first command uses SVN:// and gets the same error that you get. The second one uses the correct HTTP:// and successfully checks out the source.

    Update 2: You have to specify the target directory at the end of the checkout command. I was looking at the example command in your question and your comments and the only places I saw a target directory, it was in the form of c:development\automapper – a relative directory to the current working directory, which in your examples seems to be C:\Program Files\SlikSvn\bin – and this one usually is read-only, unless you are running as an administrator.

    If that turns out not to be the problem either, I would suggest to remove all current outputs from your question, run svn checkout http://automapperhome.googlecode.com/svn/trunk/ %USERPROFILE%\Desktop\automapper and copy the command and the output verbatim from the console in the question. Baring more details, it’s unlikely we will be able to help you further.

    In any case, it seems unlikely that the problem is with your network configuration. The URL uses the standard HTTP protocol over port 80 and SVN is returning to you 200 OK, which indicates it’s able to connect to the server. Whatever is going wrong is on the local side. Still, you could verify this by running Fiddler and trying again.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've heard people referring to this table and was not sure what it was
I'm referring to distinctions such as in this answer : ...bash isn't for writing
I have this Java code some other person wrote, specifically JSPs. I am trying
We received this piece of code for an assignment, and after spending a lot
I enjoy developing algorithms using the STL, however, I have this recurring problem where
This is a frequently recurring problem of generating a tree from a flat list
Referring to TLB and maintenance issues ... My question to people (often) using the
I'm using java and referring to the double datatype. To keep it short, I'm
What exactly does the word patch mean when referring to 'submitting a patch'? I've
I would like to provide the raw text referring to an environment variable to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.