var LocationWebService=function() {
LocationWebService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
LocationWebService.prototype={
GetLocationData:function(succeededCallback, failedCallback, userContext) {
return this._invoke(LocationWebService.get_path(), 'GetLocationData',false,{},succeededCallback,failedCallback,userContext); }}
LocationWebService.registerClass('LocationWebService',Sys.Net.WebServiceProxy);
LocationWebService._staticInstance = new LocationWebService();
LocationWebService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; LocationWebService._staticInstance._path = value; }
LocationWebService.get_path = function() { return LocationWebService._staticInstance._path; }
LocationWebService.set_timeout = function(value) { var e = Function._validateParams(arguments, [{name: 'timeout', type: Number}]); if (e) throw e; if (value < 0) { throw Error.argumentOutOfRange('value', value, Sys.Res.invalidTimeout); }
LocationWebService._staticInstance._timeout = value; }
LocationWebService.get_timeout = function() { 
return LocationWebService._staticInstance._timeout; }
LocationWebService.set_defaultUserContext = function(value) { 
LocationWebService._staticInstance._userContext = value; }
LocationWebService.get_defaultUserContext = function() { 
return LocationWebService._staticInstance._userContext; }
LocationWebService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; LocationWebService._staticInstance._succeeded = value; }
LocationWebService.get_defaultSucceededCallback = function() { 
return LocationWebService._staticInstance._succeeded; }
LocationWebService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; LocationWebService._staticInstance._failed = value; }
LocationWebService.get_defaultFailedCallback = function() { 
return LocationWebService._staticInstance._failed; }
LocationWebService.set_path("/LocationWebService.asmx");
LocationWebService.GetLocationData= function(onSuccess,onFailed,userContext) {LocationWebService._staticInstance.GetLocationData(onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(Result) === 'undefined') {
var Result=gtc("Result");
Result.registerClass('Result');
}
