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

