var QLPipe=function() {
QLPipe.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
QLPipe.prototype={
FindAddress:function(key,Location,succeededCallback, failedCallback, userContext) {
return this._invoke(QLPipe.get_path(), 'FindAddress',false,{key:key,Location:Location},succeededCallback,failedCallback,userContext); }}
QLPipe.registerClass('QLPipe',Sys.Net.WebServiceProxy);
QLPipe._staticInstance = new QLPipe();
QLPipe.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; QLPipe._staticInstance._path = value; }
QLPipe.get_path = function() { return QLPipe._staticInstance._path; }
QLPipe.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
QLPipe._staticInstance._timeout = value; }
QLPipe.get_timeout = function() { 
return QLPipe._staticInstance._timeout; }
QLPipe.set_defaultUserContext = function(value) { 
QLPipe._staticInstance._userContext = value; }
QLPipe.get_defaultUserContext = function() { 
return QLPipe._staticInstance._userContext; }
QLPipe.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; QLPipe._staticInstance._succeeded = value; }
QLPipe.get_defaultSucceededCallback = function() { 
return QLPipe._staticInstance._succeeded; }
QLPipe.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; QLPipe._staticInstance._failed = value; }
QLPipe.get_defaultFailedCallback = function() { 
return QLPipe._staticInstance._failed; }
QLPipe.set_path("/Bizadlive/Locator/QLPipe.asmx");
QLPipe.FindAddress= function(key,Location,onSuccess,onFailed,userContext) {QLPipe._staticInstance.FindAddress(key,Location,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('QL');
if (typeof(QL.Result) === 'undefined') {
QL.Result=gtc("QL.Result");
QL.Result.registerClass('QL.Result');
}
