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

