var QLPipe=function() {
QLPipe.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
QLPipe.prototype={
FindSuburb:function(UserKey,Location,succeededCallback, failedCallback, userContext) {
return this._invoke(QLPipe.get_path(), 'FindSuburb',false,{UserKey:UserKey,Location:Location},succeededCallback,failedCallback,userContext); },
FindAddress:function(UserKey,Suburb,Street,State,PostCode,succeededCallback, failedCallback, userContext) {
return this._invoke(QLPipe.get_path(), 'FindAddress',false,{UserKey:UserKey,Suburb:Suburb,Street:Street,State:State,PostCode:PostCode},succeededCallback,failedCallback,userContext); }}
QLPipe.registerClass('QLPipe',Sys.Net.WebServiceProxy);
QLPipe._staticInstance = new QLPipe();
QLPipe.set_path = function(value) { QLPipe._staticInstance._path = value; }
QLPipe.get_path = function() { return QLPipe._staticInstance._path; }
QLPipe.set_timeout = function(value) { 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) { QLPipe._staticInstance._succeeded = value; }
QLPipe.get_defaultSucceededCallback = function() { return QLPipe._staticInstance._succeeded; }
QLPipe.set_defaultFailedCallback = function(value) { QLPipe._staticInstance._failed = value; }
QLPipe.get_defaultFailedCallback = function() { return QLPipe._staticInstance._failed; }
QLPipe.set_path("/vinefinders/locator/QLPipe.asmx");
QLPipe.FindSuburb= function(UserKey,Location,onSuccess,onFailed,userContext) {QLPipe._staticInstance.FindSuburb(UserKey,Location,onSuccess,onFailed,userContext); }
QLPipe.FindAddress= function(UserKey,Suburb,Street,State,PostCode,onSuccess,onFailed,userContext) {QLPipe._staticInstance.FindAddress(UserKey,Suburb,Street,State,PostCode,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');
}

