Type.registerNamespace('WebReports');
WebReports.ReportService=function() {
WebReports.ReportService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebReports.ReportService.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WebReports.ReportService._staticInstance.get_path();},
LogPageStartEndEvent:function(strServerName,strReportPageID,strPageStartEventTypeID,strPageEndEventTypeID,strSessionGUID,strRequestSessionGUID,strUserID,strPageStartEventDateTime,strPageEndEventDateTime,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LogPageStartEndEvent',false,{strServerName:strServerName,strReportPageID:strReportPageID,strPageStartEventTypeID:strPageStartEventTypeID,strPageEndEventTypeID:strPageEndEventTypeID,strSessionGUID:strSessionGUID,strRequestSessionGUID:strRequestSessionGUID,strUserID:strUserID,strPageStartEventDateTime:strPageStartEventDateTime,strPageEndEventDateTime:strPageEndEventDateTime},succeededCallback,failedCallback,userContext); },
LogPageEvent:function(strServerName,strReportPageID,strPageEventTypeID,strSessionGUID,strRequestSessionGUID,strUserID,strPageEventDateTime,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LogPageEvent',false,{strServerName:strServerName,strReportPageID:strReportPageID,strPageEventTypeID:strPageEventTypeID,strSessionGUID:strSessionGUID,strRequestSessionGUID:strRequestSessionGUID,strUserID:strUserID,strPageEventDateTime:strPageEventDateTime},succeededCallback,failedCallback,userContext); }}
WebReports.ReportService.registerClass('WebReports.ReportService',Sys.Net.WebServiceProxy);
WebReports.ReportService._staticInstance = new WebReports.ReportService();
WebReports.ReportService.set_path = function(value) { WebReports.ReportService._staticInstance.set_path(value); }
WebReports.ReportService.get_path = function() { return WebReports.ReportService._staticInstance.get_path(); }
WebReports.ReportService.set_timeout = function(value) { WebReports.ReportService._staticInstance.set_timeout(value); }
WebReports.ReportService.get_timeout = function() { return WebReports.ReportService._staticInstance.get_timeout(); }
WebReports.ReportService.set_defaultUserContext = function(value) { WebReports.ReportService._staticInstance.set_defaultUserContext(value); }
WebReports.ReportService.get_defaultUserContext = function() { return WebReports.ReportService._staticInstance.get_defaultUserContext(); }
WebReports.ReportService.set_defaultSucceededCallback = function(value) { WebReports.ReportService._staticInstance.set_defaultSucceededCallback(value); }
WebReports.ReportService.get_defaultSucceededCallback = function() { return WebReports.ReportService._staticInstance.get_defaultSucceededCallback(); }
WebReports.ReportService.set_defaultFailedCallback = function(value) { WebReports.ReportService._staticInstance.set_defaultFailedCallback(value); }
WebReports.ReportService.get_defaultFailedCallback = function() { return WebReports.ReportService._staticInstance.get_defaultFailedCallback(); }
WebReports.ReportService.set_enableJsonp = function(value) { WebReports.ReportService._staticInstance.set_enableJsonp(value); }
WebReports.ReportService.get_enableJsonp = function() { return WebReports.ReportService._staticInstance.get_enableJsonp(); }
WebReports.ReportService.set_jsonpCallbackParameter = function(value) { WebReports.ReportService._staticInstance.set_jsonpCallbackParameter(value); }
WebReports.ReportService.get_jsonpCallbackParameter = function() { return WebReports.ReportService._staticInstance.get_jsonpCallbackParameter(); }
WebReports.ReportService.set_path("/ReportService.asmx");
WebReports.ReportService.LogPageStartEndEvent= function(strServerName,strReportPageID,strPageStartEventTypeID,strPageEndEventTypeID,strSessionGUID,strRequestSessionGUID,strUserID,strPageStartEventDateTime,strPageEndEventDateTime,onSuccess,onFailed,userContext) {WebReports.ReportService._staticInstance.LogPageStartEndEvent(strServerName,strReportPageID,strPageStartEventTypeID,strPageEndEventTypeID,strSessionGUID,strRequestSessionGUID,strUserID,strPageStartEventDateTime,strPageEndEventDateTime,onSuccess,onFailed,userContext); }
WebReports.ReportService.LogPageEvent= function(strServerName,strReportPageID,strPageEventTypeID,strSessionGUID,strRequestSessionGUID,strUserID,strPageEventDateTime,onSuccess,onFailed,userContext) {WebReports.ReportService._staticInstance.LogPageEvent(strServerName,strReportPageID,strPageEventTypeID,strSessionGUID,strRequestSessionGUID,strUserID,strPageEventDateTime,onSuccess,onFailed,userContext); }

