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

