var PerformanceService=function() {
PerformanceService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PerformanceService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return PerformanceService._staticInstance.get_path();},
LogRequest:function(data,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LogRequest',false,{data:data},succeededCallback,failedCallback,userContext); },
LoginCheck:function(login,password,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LoginCheck',false,{login:login,password:password},succeededCallback,failedCallback,userContext); }}
PerformanceService.registerClass('PerformanceService',Sys.Net.WebServiceProxy);
PerformanceService._staticInstance = new PerformanceService();
PerformanceService.set_path = function(value) { PerformanceService._staticInstance.set_path(value); }
PerformanceService.get_path = function() { return PerformanceService._staticInstance.get_path(); }
PerformanceService.set_timeout = function(value) { PerformanceService._staticInstance.set_timeout(value); }
PerformanceService.get_timeout = function() { return PerformanceService._staticInstance.get_timeout(); }
PerformanceService.set_defaultUserContext = function(value) { PerformanceService._staticInstance.set_defaultUserContext(value); }
PerformanceService.get_defaultUserContext = function() { return PerformanceService._staticInstance.get_defaultUserContext(); }
PerformanceService.set_defaultSucceededCallback = function(value) { PerformanceService._staticInstance.set_defaultSucceededCallback(value); }
PerformanceService.get_defaultSucceededCallback = function() { return PerformanceService._staticInstance.get_defaultSucceededCallback(); }
PerformanceService.set_defaultFailedCallback = function(value) { PerformanceService._staticInstance.set_defaultFailedCallback(value); }
PerformanceService.get_defaultFailedCallback = function() { return PerformanceService._staticInstance.get_defaultFailedCallback(); }
PerformanceService.set_path("/Webshop/Services/PerformanceService.asmx");
PerformanceService.LogRequest= function(data,onSuccess,onFailed,userContext) {PerformanceService._staticInstance.LogRequest(data,onSuccess,onFailed,userContext); }
PerformanceService.LoginCheck= function(login,password,onSuccess,onFailed,userContext) {PerformanceService._staticInstance.LoginCheck(login,password,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(RequestInfo) === 'undefined') {
var RequestInfo=gtc("RequestInfo");
RequestInfo.registerClass('RequestInfo');
}

