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) {
/// <param name="counts" type="String">System.String</param>
/// <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(), 'putfavorite',false,{counts:counts},succeededCallback,failedCallback,userContext); },
mytopic:function(Account,succeededCallback, failedCallback, userContext) {
/// <param name="Account" type="String">System.String</param>
/// <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(), '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() { 
/// <value type="String" mayBeNull="true">The service url.</value>
return GetProfile._staticInstance.get_path();}
GetProfile.set_timeout = function(value) {
GetProfile._staticInstance.set_timeout(value); }
GetProfile.get_timeout = function() { 
/// <value type="Number">The service timeout.</value>
return GetProfile._staticInstance.get_timeout(); }
GetProfile.set_defaultUserContext = function(value) { 
GetProfile._staticInstance.set_defaultUserContext(value); }
GetProfile.get_defaultUserContext = function() { 
/// <value mayBeNull="true">The service default user context.</value>
return GetProfile._staticInstance.get_defaultUserContext(); }
GetProfile.set_defaultSucceededCallback = function(value) { 
 GetProfile._staticInstance.set_defaultSucceededCallback(value); }
GetProfile.get_defaultSucceededCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default succeeded callback.</value>
return GetProfile._staticInstance.get_defaultSucceededCallback(); }
GetProfile.set_defaultFailedCallback = function(value) { 
GetProfile._staticInstance.set_defaultFailedCallback(value); }
GetProfile.get_defaultFailedCallback = function() { 
/// <value type="Function" mayBeNull="true">The service default failed callback.</value>
return GetProfile._staticInstance.get_defaultFailedCallback(); }
GetProfile.set_path("/WebServices/WS_GetProfile.asmx");
GetProfile.putfavorite= function(counts,onSuccess,onFailed,userContext) {
/// <param name="counts" type="String">System.String</param>
/// <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>
GetProfile._staticInstance.putfavorite(counts,onSuccess,onFailed,userContext); }
GetProfile.mytopic= function(Account,onSuccess,onFailed,userContext) {
/// <param name="Account" type="String">System.String</param>
/// <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>
GetProfile._staticInstance.mytopic(Account,onSuccess,onFailed,userContext); }

