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