Type.registerNamespace('VeriNav.WebServices');
VeriNav.WebServices.LogSession=function() {
VeriNav.WebServices.LogSession.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
VeriNav.WebServices.LogSession.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return VeriNav.WebServices.LogSession._staticInstance.get_path();},
LogOp:function(operation,succeededCallback, failedCallback, userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'LogOp',false,{operation:operation},succeededCallback,failedCallback,userContext); },
LogGeo:function(operation,geo,succeededCallback, failedCallback, userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="geo" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'LogGeo',false,{operation:operation,geo:geo},succeededCallback,failedCallback,userContext); },
LogCat:function(operation,geo,cat,succeededCallback, failedCallback, userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="geo" type="Number">System.Int32</param>
/// <param name="cat" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'LogCat',false,{operation:operation,geo:geo,cat:cat},succeededCallback,failedCallback,userContext); },
LogArticle:function(operation,geo,cat,article,succeededCallback, failedCallback, userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="geo" type="Number">System.Int32</param>
/// <param name="cat" type="Number">System.Int32</param>
/// <param name="article" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'LogArticle',false,{operation:operation,geo:geo,cat:cat,article:article},succeededCallback,failedCallback,userContext); },
LogAd:function(operation,geo,cat,ad,succeededCallback, failedCallback, userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="geo" type="Number">System.Int32</param>
/// <param name="cat" type="Number">System.Int32</param>
/// <param name="ad" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'LogAd',false,{operation:operation,geo:geo,cat:cat,ad:ad},succeededCallback,failedCallback,userContext); },
LogUrl:function(operation,url,succeededCallback, failedCallback, userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="url" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'LogUrl',false,{operation:operation,url:url},succeededCallback,failedCallback,userContext); },
LogMessage:function(operation,message,succeededCallback, failedCallback, userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="message" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'LogMessage',false,{operation:operation,message:message},succeededCallback,failedCallback,userContext); }}
VeriNav.WebServices.LogSession.registerClass('VeriNav.WebServices.LogSession',Sys.Net.WebServiceProxy);
VeriNav.WebServices.LogSession._staticInstance = new VeriNav.WebServices.LogSession();
VeriNav.WebServices.LogSession.set_path = function(value) {
VeriNav.WebServices.LogSession._staticInstance.set_path(value); }
VeriNav.WebServices.LogSession.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return VeriNav.WebServices.LogSession._staticInstance.get_path();}
VeriNav.WebServices.LogSession.set_timeout = function(value) {
VeriNav.WebServices.LogSession._staticInstance.set_timeout(value); }
VeriNav.WebServices.LogSession.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return VeriNav.WebServices.LogSession._staticInstance.get_timeout(); }
VeriNav.WebServices.LogSession.set_defaultUserContext = function(value) { 
VeriNav.WebServices.LogSession._staticInstance.set_defaultUserContext(value); }
VeriNav.WebServices.LogSession.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return VeriNav.WebServices.LogSession._staticInstance.get_defaultUserContext(); }
VeriNav.WebServices.LogSession.set_defaultSucceededCallback = function(value) { 
 VeriNav.WebServices.LogSession._staticInstance.set_defaultSucceededCallback(value); }
VeriNav.WebServices.LogSession.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return VeriNav.WebServices.LogSession._staticInstance.get_defaultSucceededCallback(); }
VeriNav.WebServices.LogSession.set_defaultFailedCallback = function(value) { 
VeriNav.WebServices.LogSession._staticInstance.set_defaultFailedCallback(value); }
VeriNav.WebServices.LogSession.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return VeriNav.WebServices.LogSession._staticInstance.get_defaultFailedCallback(); }
VeriNav.WebServices.LogSession.set_enableJsonp = function(value) { VeriNav.WebServices.LogSession._staticInstance.set_enableJsonp(value); }
VeriNav.WebServices.LogSession.get_enableJsonp = function() { 
/// <value type="Boolean">Specifies whether the service supports JSONP for cross domain calling.</value>
return VeriNav.WebServices.LogSession._staticInstance.get_enableJsonp(); }
VeriNav.WebServices.LogSession.set_jsonpCallbackParameter = function(value) { VeriNav.WebServices.LogSession._staticInstance.set_jsonpCallbackParameter(value); }
VeriNav.WebServices.LogSession.get_jsonpCallbackParameter = function() { 
/// <value type="String">Specifies the parameter name that contains the callback function name for a JSONP request.</value>
return VeriNav.WebServices.LogSession._staticInstance.get_jsonpCallbackParameter(); }
VeriNav.WebServices.LogSession.set_path("/WebServices/LogSession.asmx");
VeriNav.WebServices.LogSession.LogOp= function(operation,onSuccess,onFailed,userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
VeriNav.WebServices.LogSession._staticInstance.LogOp(operation,onSuccess,onFailed,userContext); }
VeriNav.WebServices.LogSession.LogGeo= function(operation,geo,onSuccess,onFailed,userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="geo" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
VeriNav.WebServices.LogSession._staticInstance.LogGeo(operation,geo,onSuccess,onFailed,userContext); }
VeriNav.WebServices.LogSession.LogCat= function(operation,geo,cat,onSuccess,onFailed,userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="geo" type="Number">System.Int32</param>
/// <param name="cat" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
VeriNav.WebServices.LogSession._staticInstance.LogCat(operation,geo,cat,onSuccess,onFailed,userContext); }
VeriNav.WebServices.LogSession.LogArticle= function(operation,geo,cat,article,onSuccess,onFailed,userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="geo" type="Number">System.Int32</param>
/// <param name="cat" type="Number">System.Int32</param>
/// <param name="article" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
VeriNav.WebServices.LogSession._staticInstance.LogArticle(operation,geo,cat,article,onSuccess,onFailed,userContext); }
VeriNav.WebServices.LogSession.LogAd= function(operation,geo,cat,ad,onSuccess,onFailed,userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="geo" type="Number">System.Int32</param>
/// <param name="cat" type="Number">System.Int32</param>
/// <param name="ad" type="Number">System.Int32</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
VeriNav.WebServices.LogSession._staticInstance.LogAd(operation,geo,cat,ad,onSuccess,onFailed,userContext); }
VeriNav.WebServices.LogSession.LogUrl= function(operation,url,onSuccess,onFailed,userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="url" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
VeriNav.WebServices.LogSession._staticInstance.LogUrl(operation,url,onSuccess,onFailed,userContext); }
VeriNav.WebServices.LogSession.LogMessage= function(operation,message,onSuccess,onFailed,userContext) {
/// <param name="operation" type="log4netSession_Ops">log4netSession+Ops</param>
/// <param name="message" type="String">System.String</param>
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
VeriNav.WebServices.LogSession._staticInstance.LogMessage(operation,message,onSuccess,onFailed,userContext); }
if (typeof(Ops) === 'undefined') {
var Ops = function() { throw Error.invalidOperation(); }
Ops.prototype = {Start: 0,DisplayResultPage: 1,DisplayHomePage: 2,DisplayAd: 3,Home: 4,SearchResult: 5,HomeRssFeed: 6,HomeTabSelect: 7,LocationDirect: 8,CategoryDirect: 9,CategoryMenu: 10,SubCategoryMenu: 11,ExpandArticle: 12,ExpandSubCategory: 13,ResultLink: 14,Bookmark: 15,UnBookmark: 16,ClickAd: 17,Login: 18,Logout: 19,ChangeRole: 20,End: 21,RequestRSSFeed: 22,Unknown: 23}
Ops.registerEnum('Ops', true);
}
if(typeof(Sys)!=='undefined')Sys.Application.notifyScriptLoaded();