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

