|
|
| Service Owner: |
xmethods |
| Service Home: |
xmethods.com |
| Service WSDL URL: |
http://services.xmethods.net/soap/urn:xmethods-DomainChecker.wsdl
Inspect WSDL View WSDL |
| Short Description: |
This service checks if the submitted domain name is available or not. |
| Implementation: |
axis |
|
| unlimited |
free |
free |
instant |
no |
|
|
This service checks if the submitted domain name is available or not. If it is available it will return 'available' if it is unavailable, you guess it, it will return 'unavailable'. |
|
|
#include "NetServices.as"
#include "NetDebug.as"
// create result handler for results and error messages.
serviceResult = new Object();
serviceResult.onResult = function(result){
trace(result)
}
serviceResult.onStatus = function(status){
trace(status);
}
// sets up the gateway connection.
var serverConn = NetServices.createGatewayConnection("<PathToYourGateway>");
// sets up the service.
var service = serverConn.getService("http://services.xmethods.net/soap/urn:xmethods-DomainChecker.wsdl", serviceResult);
// Set the params and call the service
// checks a domain name to see if it is available or not.
// Returns either 'Available' or 'Unavailable'.
params = {
domainname:'xflashRemoteTest.com'
}
// calls the checkDomain method.
service.checkDomain(params);
|
|
|