Domain Name Checker
Endpoints
Contributed Clients What is this? Add / Edit / Delete Client
Detailed Description
Checks whether a domain name is available or not.
Returns the string "available" or "unavailable"
Usage Notes
Request Parameter Schema:
<element name="domainname" type="string" />
Response Parameter Schema:
<element name="return" type="string" />
Encoding Style for both request and response:
http://schemas.xmlsoap.org/soap/encoding
----------------------------------------------------------
For XMethods Server implementation, use port 9090 instead of 80
----------------------------------------------------------
Sample Request envelope:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<SOAP-ENV:Body>
<ns1:checkDomain xmlns:ns1="urn:xmethods-DomainChecker" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<domainname xsi:type="xsd:string">yahoo.com</domainname>
</ns1:checkDomain>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
-----------------------------------------------------------
Sample Response Envelope:
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
<SOAP-ENV:Body>
<ns1:checkDomainResponse xmlns:ns1="urn:xmethods-DomainChecker" SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
<return xsi:type="xsd:string">unavailable</return>
</ns1:checkDomainResponse>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
Help Message Board