How to get whois information of a domain name in my program? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T06:32:08Zhttp://stackoverflow.com/feeds/question/53623http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program2How to get whois information of a domain name in my program?Niyaz2008-09-10T08:27:45Z2009-07-01T06:37:04Z
<p>I want to get whois information of a domain name from my c#/java programs. Is there a simple way to do this? </p>
http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/53626#536260Answer by Lukas Ĺ alkauskas for How to get whois information of a domain name in my program?Lukas Ĺ alkauskas2008-09-10T08:29:51Z2008-09-10T08:29:51Z<p>This might help: <a href="http://www.sourcecodeonline.com/details/whois_search_using_c_.html" rel="nofollow">Whois search using C#</a></p>
http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/53631#536312Answer by Thomas for How to get whois information of a domain name in my program?Thomas 2008-09-10T08:33:32Z2008-09-10T08:33:32Z<p>I think, the easiest way is a socket connection to a whois server on port 43. Send the domainname followed by a newline and read the response.</p>
http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/53632#536321Answer by Chris Bunch for How to get whois information of a domain name in my program?Chris Bunch2008-09-10T08:36:03Z2008-09-10T08:48:01Z<p>Here's the Java solution, which just opens up a shell and runs <code>whois</code>:</p>
<pre><code>import java.io.*;
import java.util.*;
public class ExecTest2 {
public static void main(String[] args) throws IOException {
Process result = Runtime.getRuntime().exec("whois stackoverflow.com");
BufferedReader output = new BufferedReader(new InputStreamReader(result.getInputStream()));
StringBuffer outputSB = new StringBuffer(40000);
String s = null;
while ((s = output.readLine()) != null) {
outputSB.append(s + "\n");
System.out.println(s);
}
String whoisStr = output.toString();
}
}
</code></pre>
http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/177758#1777581Answer by Alnitak for How to get whois information of a domain name in my program?Alnitak2008-10-07T09:34:45Z2008-10-07T09:34:45Z<p>Thomas' answer will only work if you know <em>which</em> "whois" server to connect to.</p>
<p>There are many different ways of finding that out, but none (AFAIK) that works uniformly for every domain registry.</p>
<p>Some domain names support an <code>SRV</code> record for the <code>_nicname._tcp</code> service in the DNS, but there are issues with that because there's no accepted standard yet on how to prevent a subdomain from serving up <code>SRV</code> records which override those of the official registry (see <a href="http://tools.ietf.org/html/draft-sanz-whois-srv-00" rel="nofollow">http://tools.ietf.org/html/draft-sanz-whois-srv-00</a>).</p>
<p>For many TLDs it's possible to send your query to <code><tld>.whois-servers.net</code>. This actually works quite well, but beware that it won't work in all cases where there are officially delegated second level domains.</p>
<p>For example in <code>.uk</code> there are several official sub-domains, but only some of them are run by the <code>.uk</code> registry and the others have their own WHOIS services and those aren't in the <code>whois-servers.net</code> database.</p>
<p>Confusingly there are also "unofficial" registries, such as <code>.uk.com</code>, which <em>are</em> in the <code>whois-servers.net</code> database.</p>
<p>p.s. the official End-Of-Line delimiter in WHOIS, as with most IETF protocols is <code>CRLF</code>, not just <code>LF</code>.</p>
http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/923873#9238730Answer by JD for How to get whois information of a domain name in my program?JD2009-05-29T00:24:12Z2009-05-29T00:24:12Z<p>I found some web services that offer this information. This one is free and worked great for me. <a href="http://www.webservicex.net/whois.asmx?op=GetWhoIS" rel="nofollow">http://www.webservicex.net/whois.asmx?op=GetWhoIS</a></p>
http://stackoverflow.com/questions/53623/how-to-get-whois-information-of-a-domain-name-in-my-program/1067587#10675870Answer by Andrew Shepherd for How to get whois information of a domain name in my program?Andrew Shepherd2009-07-01T06:37:04Z2009-07-01T06:37:04Z<p>I found a perfect C# example <A HREF="http://dotnet-snippets.com/dns/gets-the-whois-information-SID581.aspx" rel="nofollow">here.</A> </p>
<p>It's 11 lines of code to copy and paste straight into your own application.</p>