var expert_forum=function() {
expert_forum.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
expert_forum.prototype={
HelloWorld:function(succeededCallback, failedCallback, userContext) {
return this._invoke(expert_forum.get_path(), 'HelloWorld',false,{},succeededCallback,failedCallback,userContext); },
getlist:function(topcount,succeededCallback, failedCallback, userContext) {
return this._invoke(expert_forum.get_path(), 'getlist',false,{topcount:topcount},succeededCallback,failedCallback,userContext); }}
expert_forum.registerClass('expert_forum',Sys.Net.WebServiceProxy);
expert_forum._staticInstance = new expert_forum();
expert_forum.set_path = function(value) { 
var e = Function._validateParams(arguments, [{name: 'path', type: String}]); if (e) throw e; expert_forum._staticInstance._path = value; }
expert_forum.get_path = function() { return expert_forum._staticInstance._path; }
expert_forum.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); }
expert_forum._staticInstance._timeout = value; }
expert_forum.get_timeout = function() { 
return expert_forum._staticInstance._timeout; }
expert_forum.set_defaultUserContext = function(value) { 
expert_forum._staticInstance._userContext = value; }
expert_forum.get_defaultUserContext = function() { 
return expert_forum._staticInstance._userContext; }
expert_forum.set_defaultSucceededCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultSucceededCallback', type: Function}]); if (e) throw e; expert_forum._staticInstance._succeeded = value; }
expert_forum.get_defaultSucceededCallback = function() { 
return expert_forum._staticInstance._succeeded; }
expert_forum.set_defaultFailedCallback = function(value) { 
var e = Function._validateParams(arguments, [{name: 'defaultFailedCallback', type: Function}]); if (e) throw e; expert_forum._staticInstance._failed = value; }
expert_forum.get_defaultFailedCallback = function() { 
return expert_forum._staticInstance._failed; }
expert_forum.set_path("/ssd/expert_forum.asmx");
expert_forum.HelloWorld= function(onSuccess,onFailed,userContext) {expert_forum._staticInstance.HelloWorld(onSuccess,onFailed,userContext); }
expert_forum.getlist= function(topcount,onSuccess,onFailed,userContext) {expert_forum._staticInstance.getlist(topcount,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
if (typeof(listitem) === 'undefined') {
var listitem=gtc("listitem");
listitem.registerClass('listitem');
}

