解析whois回答

时间:2010-03-09 23:31:24

标签: c# whois

我想创建像那样的whois类

public class DomainInfo
{

     public string NameServer {get;set;}        
     public string CreationDate {get;set;}
     public string UpdatedDate {get;set;} 
     public string ExpirationDate {get;set;}
     public string Status {get;set;}        
     public string RegistrantName {get;set;}
     public string RegistrantOrganization {get;set;}
     public string Registrantemail {get;set;}        
     public static DomainInfo Parse(string inputData)
  {
     ......
  }
}

但是我遇到了一些问题,因为不同的DNS服务器返回不同的答案,解析返回的答案是一项非常困难的任务。怎么办呢?

2 个答案:

答案 0 :(得分:4)

如果没有为您遇到的每个whois数据库实现解析器,就无法完成。

Whois没有标准格式,大多数注册管理机构甚至没有通过whois提供所有信息,而是提供一个句柄,您可以在填写验证码时通过HTTP检查:

$ whois google.no
% Kopibeskyttet, se http://www.norid.no/domenenavnbaser/whois/kopirett.html
% Rights restricted by copyright. See http://www.norid.no/domenenavnbaser/whois/kopirett.en.html

Domain Information

Domain Name................: google.no
Organization Handle........: GNA78O-NORID
Registrar Handle...........: REG466-NORID
Legal-c Handle.............: RH1355P-NORID
Tech-c Handle..............: JM722P-NORID
Zone-c Handle..............: JM722P-NORID
...

答案 1 :(得分:2)

以下是一篇博客帖子的链接,其中包含一些可能有用的C#代码:

http://blog.flipbit.co.uk/2009/06/querying-whois-server-data-with-c.html

当您遇到无法获得所需数据的实例时,您可能会调整解析代码,但我认为没有一种适合所有解决方案的解决方案。