Re: How To Get Domain Whois Information From Whois Servers With RR?

2006-01-29 Thread alex wu
Eric, Thanks for your great assistance! I played around for some domains and found that this projects might be quite complicated for me. Here's what I found: 1. The output of the whois (tUrl) has a lot of format with different domain names: Some use Expiration date: Some use Expiry

Re: How To Get Domain Whois Information From Whois Servers With RR?

2006-01-29 Thread alex wu
Alex, Thanks for your kind assistance. I replied my difficulties to Eric in another email. How do you solve the concerns I mentioned? Thanks and best regards Alex --- Alex Tweedly [EMAIL PROTECTED] wrote: alex wu wrote: Hello, I am thinking to use RR to get domain whois information

Re: How To Get Domain Whois Information From Whois Servers With RR?

2006-01-29 Thread Eric Chatonet
Hi Alex, I did not dug in :-( It's a pity... May be you could test a string existence like expir and extract the date from the line if expir is found? Test also for networksolutions, other extensions, and act accordingly... Otherwise tell Not available? Not really enjoying. Le 29 janv. 06 à

Re: How To Get Domain Whois Information From Whois Servers With RR?

2006-01-29 Thread Phil Davis
Hi Alex, Another approach that would take more work but would probably be more reliable in the long run is to create a whois client app in Rev. It would use the WHOIS internet protocol and interact directly with a WHOIS server on port 43. That might enable you to bypass security issues (on some

Re: How To Get Domain Whois Information From Whois Servers With RR?

2006-01-29 Thread Stephen Barncard
or use the shell command! At least on MacOSx! But I like the idea of a revWHOISlib! Hi Alex, Another approach that would take more work but would probably be more reliable in the long run is to create a whois client app in Rev. It would use the WHOIS internet protocol and interact directly

Re: How To Get Domain Whois Information From Whois Servers With RR?

2006-01-29 Thread Alex Tweedly
alex wu wrote: Alex, Thanks for your kind assistance. I replied my difficulties to Eric in another email. How do you solve the concerns I mentioned? Sorry, I'm afraid I didn't hit, far less solve, those problems. My project was only interested in a small number of domain names - all

How To Get Domain Whois Information From Whois Servers With RR?

2006-01-28 Thread alex wu
Hello, I am thinking to use RR to get domain whois information (mainly the domain expiry date) from the domain whois servers. My idea is to monitor the expiry date of a list of domains. When a stack open, it will get the expiry date of the domains from the corresponding whois servers. Anybody

Re: How To Get Domain Whois Information From Whois Servers With RR?

2006-01-28 Thread Eric Chatonet
Hi Alex, It's very easy :-) function Expire pDomainName local tUrl - put url (http://www.whois.net/whois.cgi2?d=; pDomainName) into tUrl return line lineoffset (expires,tUrl) of tUrl end Expire And, for instance: put Expire(runrev.com) into tDeadLine Le 28 janv. 06 à 12:01,

Re: How To Get Domain Whois Information From Whois Servers With RR?

2006-01-28 Thread Alex Tweedly
alex wu wrote: Hello, I am thinking to use RR to get domain whois information (mainly the domain expiry date) from the domain whois servers. My idea is to monitor the expiry date of a list of domains. When a stack open, it will get the expiry date of the domains from the corresponding whois