var WebServicePortal=function() {
WebServicePortal.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
WebServicePortal.prototype={
_DescripcionError:function(codigo,succeededCallback, failedCallback, userContext) {
return this._invoke(WebServicePortal.get_path(), '_DescripcionError',false,{codigo:codigo},succeededCallback,failedCallback,userContext); }}
WebServicePortal.registerClass('WebServicePortal',Sys.Net.WebServiceProxy);
WebServicePortal._staticInstance = new WebServicePortal();
WebServicePortal.set_path = function(value) { WebServicePortal._staticInstance._path = value; }
WebServicePortal.get_path = function() { return WebServicePortal._staticInstance._path; }
WebServicePortal.set_timeout = function(value) { WebServicePortal._staticInstance._timeout = value; }
WebServicePortal.get_timeout = function() { return WebServicePortal._staticInstance._timeout; }
WebServicePortal.set_defaultUserContext = function(value) { WebServicePortal._staticInstance._userContext = value; }
WebServicePortal.get_defaultUserContext = function() { return WebServicePortal._staticInstance._userContext; }
WebServicePortal.set_defaultSucceededCallback = function(value) { WebServicePortal._staticInstance._succeeded = value; }
WebServicePortal.get_defaultSucceededCallback = function() { return WebServicePortal._staticInstance._succeeded; }
WebServicePortal.set_defaultFailedCallback = function(value) { WebServicePortal._staticInstance._failed = value; }
WebServicePortal.get_defaultFailedCallback = function() { return WebServicePortal._staticInstance._failed; }
WebServicePortal.set_path("/WebService.asmx");
WebServicePortal._DescripcionError= function(codigo,onSuccess,onFailed,userContext) {WebServicePortal._staticInstance._DescripcionError(codigo,onSuccess,onFailed,userContext); }
