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