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