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

