var Autenticacion=function() {
Autenticacion.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
Autenticacion.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return Autenticacion._staticInstance.get_path();},
desLoguear:function(mail,pass,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'desLoguear',false,{mail:mail,pass:pass},succeededCallback,failedCallback,userContext); },
Loguear:function(mail,pass,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Loguear',false,{mail:mail,pass:pass},succeededCallback,failedCallback,userContext); },
LoguearEncripted:function(info,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'LoguearEncripted',false,{info:info},succeededCallback,failedCallback,userContext); }}
Autenticacion.registerClass('Autenticacion',Sys.Net.WebServiceProxy);
Autenticacion._staticInstance = new Autenticacion();
Autenticacion.set_path = function(value) { Autenticacion._staticInstance.set_path(value); }
Autenticacion.get_path = function() { return Autenticacion._staticInstance.get_path(); }
Autenticacion.set_timeout = function(value) { Autenticacion._staticInstance.set_timeout(value); }
Autenticacion.get_timeout = function() { return Autenticacion._staticInstance.get_timeout(); }
Autenticacion.set_defaultUserContext = function(value) { Autenticacion._staticInstance.set_defaultUserContext(value); }
Autenticacion.get_defaultUserContext = function() { return Autenticacion._staticInstance.get_defaultUserContext(); }
Autenticacion.set_defaultSucceededCallback = function(value) { Autenticacion._staticInstance.set_defaultSucceededCallback(value); }
Autenticacion.get_defaultSucceededCallback = function() { return Autenticacion._staticInstance.get_defaultSucceededCallback(); }
Autenticacion.set_defaultFailedCallback = function(value) { Autenticacion._staticInstance.set_defaultFailedCallback(value); }
Autenticacion.get_defaultFailedCallback = function() { return Autenticacion._staticInstance.get_defaultFailedCallback(); }
Autenticacion.set_path("/Autenticacion.asmx");
Autenticacion.desLoguear= function(mail,pass,onSuccess,onFailed,userContext) {Autenticacion._staticInstance.desLoguear(mail,pass,onSuccess,onFailed,userContext); }
Autenticacion.Loguear= function(mail,pass,onSuccess,onFailed,userContext) {Autenticacion._staticInstance.Loguear(mail,pass,onSuccess,onFailed,userContext); }
Autenticacion.LoguearEncripted= function(info,onSuccess,onFailed,userContext) {Autenticacion._staticInstance.LoguearEncripted(info,onSuccess,onFailed,userContext); }
