I want to get whois information of a domain name from my c#/java programs. Is there a simple way to do this?
|
1
|
|
|
|
|
|
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. |
||
|
|
|
|
This might help: Whois search using C# |
||
|
|
|
Here's the Java solution, which just opens up a shell and runs
|
|||
|
|
|
|
Thomas' answer will only work if you know which "whois" server to connect to. There are many different ways of finding that out, but none (AFAIK) that works uniformly for every domain registry. Some domain names support an For many TLDs it's possible to send your query to For example in Confusingly there are also "unofficial" registries, such as p.s. the official End-Of-Line delimiter in WHOIS, as with most IETF protocols is |
||
|
|
|
|
I found some web services that offer this information. This one is free and worked great for me. http://www.webservicex.net/whois.asmx?op=GetWhoIS |
||
|
|
|
|
I found a perfect C# example here. It's 11 lines of code to copy and paste straight into your own application. |
||
|
|
