var wsVolunteer=function() {
wsVolunteer.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
wsVolunteer.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return wsVolunteer._staticInstance.get_path();},
volunteerActivity:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'volunteerActivity',false,{},succeededCallback,failedCallback,userContext); },
volunteerGroup:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'volunteerGroup',false,{},succeededCallback,failedCallback,userContext); },
volunteerProjectType:function(succeededCallback, failedCallback, userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
return this._invoke(this._get_path(), 'volunteerProjectType',false,{},succeededCallback,failedCallback,userContext); }}
wsVolunteer.registerClass('wsVolunteer',Sys.Net.WebServiceProxy);
wsVolunteer._staticInstance = new wsVolunteer();
wsVolunteer.set_path = function(value) {
wsVolunteer._staticInstance.set_path(value); }
wsVolunteer.get_path = function() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return wsVolunteer._staticInstance.get_path();}
wsVolunteer.set_timeout = function(value) {
wsVolunteer._staticInstance.set_timeout(value); }
wsVolunteer.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return wsVolunteer._staticInstance.get_timeout(); }
wsVolunteer.set_defaultUserContext = function(value) { 
wsVolunteer._staticInstance.set_defaultUserContext(value); }
wsVolunteer.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return wsVolunteer._staticInstance.get_defaultUserContext(); }
wsVolunteer.set_defaultSucceededCallback = function(value) { 
 wsVolunteer._staticInstance.set_defaultSucceededCallback(value); }
wsVolunteer.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return wsVolunteer._staticInstance.get_defaultSucceededCallback(); }
wsVolunteer.set_defaultFailedCallback = function(value) { 
wsVolunteer._staticInstance.set_defaultFailedCallback(value); }
wsVolunteer.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return wsVolunteer._staticInstance.get_defaultFailedCallback(); }
wsVolunteer.set_path("/webServices/wsVolunteer.asmx");
wsVolunteer.volunteerActivity= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
wsVolunteer._staticInstance.volunteerActivity(onSuccess,onFailed,userContext); }
wsVolunteer.volunteerGroup= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
wsVolunteer._staticInstance.volunteerGroup(onSuccess,onFailed,userContext); }
wsVolunteer.volunteerProjectType= function(onSuccess,onFailed,userContext) {
/// <param name="succeededCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="failedCallback" type="Function" optional="true" mayBeNull="true"></param>
/// <param name="userContext" optional="true" mayBeNull="true"></param>
wsVolunteer._staticInstance.volunteerProjectType(onSuccess,onFailed,userContext); }

