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