var webservicelog=function() {
webservicelog.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
webservicelog.prototype={
poiClickLog:function(X,Y,RadialDistance,poiTypeName,poiSelectionTypeName,name,succeededCallback, failedCallback, userContext) {
return this._invoke(webservicelog.get_path(), 'poiClickLog',false,{X:X,Y:Y,RadialDistance:RadialDistance,poiTypeName:poiTypeName,poiSelectionTypeName:poiSelectionTypeName,name:name},succeededCallback,failedCallback,userContext); }}
webservicelog.registerClass('webservicelog',Sys.Net.WebServiceProxy);
webservicelog._staticInstance = new webservicelog();
webservicelog.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; webservicelog._staticInstance._path = value; }
webservicelog.get_path = function() { return webservicelog._staticInstance._path; }
webservicelog.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); }
webservicelog._staticInstance._timeout = value; }
webservicelog.get_timeout = function() { 
return webservicelog._staticInstance._timeout; }
webservicelog.set_defaultUserContext = function(value) { 
webservicelog._staticInstance._userContext = value; }
webservicelog.get_defaultUserContext = function() { 
return webservicelog._staticInstance._userContext; }
webservicelog.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; webservicelog._staticInstance._succeeded = value; }
webservicelog.get_defaultSucceededCallback = function() { 
return webservicelog._staticInstance._succeeded; }
webservicelog.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; webservicelog._staticInstance._failed = value; }
webservicelog.get_defaultFailedCallback = function() { 
return webservicelog._staticInstance._failed; }
webservicelog.set_path("/austpost/postofficelocator/webservicelog.asmx");
webservicelog.poiClickLog= function(X,Y,RadialDistance,poiTypeName,poiSelectionTypeName,name,onSuccess,onFailed,userContext) {webservicelog._staticInstance.poiClickLog(X,Y,RadialDistance,poiTypeName,poiSelectionTypeName,name,onSuccess,onFailed,userContext); }
