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