var DomainLookup=function() {
DomainLookup.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
DomainLookup.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return DomainLookup._staticInstance.get_path();},
checkAvailable:function(searchFor,searchType,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'checkAvailable',false,{searchFor:searchFor,searchType:searchType},succeededCallback,failedCallback,userContext); },
registerLinks:function(domainName,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'registerLinks',false,{domainName:domainName},succeededCallback,failedCallback,userContext); }}
DomainLookup.registerClass('DomainLookup',Sys.Net.WebServiceProxy);
DomainLookup._staticInstance = new DomainLookup();
DomainLookup.set_path = function(value) { DomainLookup._staticInstance.set_path(value); }
DomainLookup.get_path = function() { return DomainLookup._staticInstance.get_path(); }
DomainLookup.set_timeout = function(value) { DomainLookup._staticInstance.set_timeout(value); }
DomainLookup.get_timeout = function() { return DomainLookup._staticInstance.get_timeout(); }
DomainLookup.set_defaultUserContext = function(value) { DomainLookup._staticInstance.set_defaultUserContext(value); }
DomainLookup.get_defaultUserContext = function() { return DomainLookup._staticInstance.get_defaultUserContext(); }
DomainLookup.set_defaultSucceededCallback = function(value) { DomainLookup._staticInstance.set_defaultSucceededCallback(value); }
DomainLookup.get_defaultSucceededCallback = function() { return DomainLookup._staticInstance.get_defaultSucceededCallback(); }
DomainLookup.set_defaultFailedCallback = function(value) { DomainLookup._staticInstance.set_defaultFailedCallback(value); }
DomainLookup.get_defaultFailedCallback = function() { return DomainLookup._staticInstance.get_defaultFailedCallback(); }
DomainLookup.set_path("/webservices/DomainLookup.asmx");
DomainLookup.checkAvailable= function(searchFor,searchType,onSuccess,onFailed,userContext) {DomainLookup._staticInstance.checkAvailable(searchFor,searchType,onSuccess,onFailed,userContext); }
DomainLookup.registerLinks= function(domainName,onSuccess,onFailed,userContext) {DomainLookup._staticInstance.registerLinks(domainName,onSuccess,onFailed,userContext); }
