var ZipCheckSvc=function() {
ZipCheckSvc.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
ZipCheckSvc.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return ZipCheckSvc._staticInstance.get_path();},
IsValidZip:function(strZip,succeededCallback, failedCallback, userContext) {
/// <param name="strZip" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'IsValidZip',false,{strZip:strZip},succeededCallback,failedCallback,userContext); }}
ZipCheckSvc.registerClass('ZipCheckSvc',Sys.Net.WebServiceProxy);
ZipCheckSvc._staticInstance = new ZipCheckSvc();
ZipCheckSvc.set_path = function(value) {
ZipCheckSvc._staticInstance.set_path(value); }
ZipCheckSvc.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return ZipCheckSvc._staticInstance.get_path();}
ZipCheckSvc.set_timeout = function(value) {
ZipCheckSvc._staticInstance.set_timeout(value); }
ZipCheckSvc.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return ZipCheckSvc._staticInstance.get_timeout(); }
ZipCheckSvc.set_defaultUserContext = function(value) { 
ZipCheckSvc._staticInstance.set_defaultUserContext(value); }
ZipCheckSvc.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return ZipCheckSvc._staticInstance.get_defaultUserContext(); }
ZipCheckSvc.set_defaultSucceededCallback = function(value) { 
 ZipCheckSvc._staticInstance.set_defaultSucceededCallback(value); }
ZipCheckSvc.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return ZipCheckSvc._staticInstance.get_defaultSucceededCallback(); }
ZipCheckSvc.set_defaultFailedCallback = function(value) { 
ZipCheckSvc._staticInstance.set_defaultFailedCallback(value); }
ZipCheckSvc.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return ZipCheckSvc._staticInstance.get_defaultFailedCallback(); }
ZipCheckSvc.set_path("/ltcfp/ZipCheckSvc.asmx");
ZipCheckSvc.IsValidZip= function(strZip,onSuccess,onFailed,userContext) {
/// <param name="strZip" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
ZipCheckSvc._staticInstance.IsValidZip(strZip,onSuccess,onFailed,userContext); }

