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

