Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

TSVN DNS error: The requested name is valid, but no data of the requested type was found

I've updated my TortoiseSVN client and now I'm getting the error when trying to update or commit to different repositories:

The requested name is valid, but no data of the requested type was found

Any ideas on how I can solve this? Internet Explorer shows up appropriate URL just fine.

TortoiseSVN 1.5.3, Build 13783.

like image 582
Nikolay R Avatar asked Dec 03 '22 16:12

Nikolay R


2 Answers

I was struggling to resolve this problom..atlast i found a solution...

in the URL provided, give IP Address instead of ServerName

eg: 'http://xxx.xxx.x.x:8080/svn/RepositoryName'

i got the problom fixed by doing this...

hope this piece of information will help

like image 196
harris p nair Avatar answered Dec 30 '22 18:12

harris p nair


This error being reported is a winsock one, rather than being particular to TSVN. From Windows Sockets Error Codes:

The requested name is valid and was found in the database, but it does not have the correct associated data being resolved for, e.g. an MX record is returned but no A record - indicating the host itself exists, but is not directly reachable.

It is strange that you can access the host via IE however. Is it possible that in TSVN you've specified a port number that isn't available on the remote host, and IE is accessing the host on port 80?

like image 24
ConroyP Avatar answered Dec 30 '22 17:12

ConroyP