Type.registerNamespace('TM');
TM.ForumListService=function() {
TM.ForumListService.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
TM.ForumListService.prototype={
GetThreads:function(ForumID,defaultlink,CacheMinutes,NrOfComments,Pager,succeededCallback, failedCallback, userContext) {
return this._invoke(TM.ForumListService.get_path(), 'GetThreads',false,{ForumID:ForumID,defaultlink:defaultlink,CacheMinutes:CacheMinutes,NrOfComments:NrOfComments,Pager:Pager},succeededCallback,failedCallback,userContext); }}
TM.ForumListService.registerClass('TM.ForumListService',Sys.Net.WebServiceProxy);
TM.ForumListService._staticInstance = new TM.ForumListService();
TM.ForumListService.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; TM.ForumListService._staticInstance._path = value; }
TM.ForumListService.get_path = function() { return TM.ForumListService._staticInstance._path; }
TM.ForumListService.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); }
TM.ForumListService._staticInstance._timeout = value; }
TM.ForumListService.get_timeout = function() { 
return TM.ForumListService._staticInstance._timeout; }
TM.ForumListService.set_defaultUserContext = function(value) { 
TM.ForumListService._staticInstance._userContext = value; }
TM.ForumListService.get_defaultUserContext = function() { 
return TM.ForumListService._staticInstance._userContext; }
TM.ForumListService.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; TM.ForumListService._staticInstance._succeeded = value; }
TM.ForumListService.get_defaultSucceededCallback = function() { 
return TM.ForumListService._staticInstance._succeeded; }
TM.ForumListService.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; TM.ForumListService._staticInstance._failed = value; }
TM.ForumListService.get_defaultFailedCallback = function() { 
return TM.ForumListService._staticInstance._failed; }
TM.ForumListService.set_path("/ws/ForumList.asmx");
TM.ForumListService.GetThreads= function(ForumID,defaultlink,CacheMinutes,NrOfComments,Pager,onSuccess,onFailed,userContext) {TM.ForumListService._staticInstance.GetThreads(ForumID,defaultlink,CacheMinutes,NrOfComments,Pager,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('Teknomedia.EdgeII.WebServices');
if (typeof(Teknomedia.EdgeII.WebServices.Result) === 'undefined') {
Teknomedia.EdgeII.WebServices.Result=gtc("Teknomedia.EdgeII.WebServices.Result");
Teknomedia.EdgeII.WebServices.Result.registerClass('Teknomedia.EdgeII.WebServices.Result');
}

