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

