var WCFWebCalendar=function() {
WCFWebCalendar.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WCFWebCalendar.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return WCFWebCalendar._staticInstance.get_path();},
DoWork:function(succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'DoWork',false,{},succeededCallback,failedCallback,userContext); },
JSON_getCalendar:function(year,month,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'JSON_getCalendar',false,{year:year,month:month},succeededCallback,failedCallback,userContext); },
JSON_cekLogin:function(email,pass,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'JSON_cekLogin',false,{email:email,pass:pass},succeededCallback,failedCallback,userContext); }}
WCFWebCalendar.registerClass('WCFWebCalendar',Sys.Net.WebServiceProxy);
WCFWebCalendar._staticInstance = new WCFWebCalendar();
WCFWebCalendar.set_path = function(value) { WCFWebCalendar._staticInstance.set_path(value); }
WCFWebCalendar.get_path = function() { return WCFWebCalendar._staticInstance.get_path(); }
WCFWebCalendar.set_timeout = function(value) { WCFWebCalendar._staticInstance.set_timeout(value); }
WCFWebCalendar.get_timeout = function() { return WCFWebCalendar._staticInstance.get_timeout(); }
WCFWebCalendar.set_defaultUserContext = function(value) { WCFWebCalendar._staticInstance.set_defaultUserContext(value); }
WCFWebCalendar.get_defaultUserContext = function() { return WCFWebCalendar._staticInstance.get_defaultUserContext(); }
WCFWebCalendar.set_defaultSucceededCallback = function(value) { WCFWebCalendar._staticInstance.set_defaultSucceededCallback(value); }
WCFWebCalendar.get_defaultSucceededCallback = function() { return WCFWebCalendar._staticInstance.get_defaultSucceededCallback(); }
WCFWebCalendar.set_defaultFailedCallback = function(value) { WCFWebCalendar._staticInstance.set_defaultFailedCallback(value); }
WCFWebCalendar.get_defaultFailedCallback = function() { return WCFWebCalendar._staticInstance.get_defaultFailedCallback(); }
WCFWebCalendar.set_path("/WCF/WCFWebCalendar.svc");
WCFWebCalendar.DoWork= function(onSuccess,onFailed,userContext) {WCFWebCalendar._staticInstance.DoWork(onSuccess,onFailed,userContext); }
WCFWebCalendar.JSON_getCalendar= function(year,month,onSuccess,onFailed,userContext) {WCFWebCalendar._staticInstance.JSON_getCalendar(year,month,onSuccess,onFailed,userContext); }
WCFWebCalendar.JSON_cekLogin= function(email,pass,onSuccess,onFailed,userContext) {WCFWebCalendar._staticInstance.JSON_cekLogin(email,pass,onSuccess,onFailed,userContext); }
