Page is a not externally linkable
louiseB - 10:08 pm on Dec 3, 2003 (gmt 0)
Here's what we have been given: Send XML: Reply: We can have as many 'CheckDomain' fields as needed. Also, we were given telnet info and I trying to find out how we use it too. I have done a tutorial for a simple perl guestbook and understood what i was doing to a point, but don't quite grasp how to integrate it (Perl) with this query. I appreciate your help :)
We are wanting to put a domain availability check tool on our site and have received an XML query from the provider (where the domain database is held) but have not used XML before. We use whois php script for tld's but need this new one for accurate .au domain checks.
-------------
<Request>
<Command>check_domain</Command>
<CheckDomain>provider.com.au</CheckDomain>
<CheckDomain>provider.net.au</CheckDomain>
<CheckDomain>thisisasillydomain.com.au</CheckDomain>
</Request>
---------
<Reply>
<Command>check_domain</Command>
<ResultCode>1000</ResultCode>
<CheckDomain>
<content>provider.com.au</content>
<Available>0</Available>
</CheckDomain>
<CheckDomain>
<content>provider.net.au</content>
<Available>0</Available>
</CheckDomain>
<CheckDomain>
<content>thisisasillydomain.com.au</content>
<Available>1</Available>
</CheckDomain>
<Result>Success</Result>
</Reply>
Louise