Here's what we have been given:
Send XML:
-------------
<Request>
<Command>check_domain</Command>
<CheckDomain>provider.com.au</CheckDomain>
<CheckDomain>provider.net.au</CheckDomain>
<CheckDomain>thisisasillydomain.com.au</CheckDomain>
</Request>
Reply:
---------
<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>
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 :)
Louise