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