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

