var PortfolioManager=function() {
PortfolioManager.initializeBase(this);
this._timeout = 0;
this._userContext = null;
this._succeeded = null;
this._failed = null;
}
PortfolioManager.prototype={
_get_path:function() {
 var p = this.get_path();
 if (p) return p;
 else return PortfolioManager._staticInstance.get_path();},
Friends_SortOrder:function(profileId,friendorder,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Friends_SortOrder',false,{profileId:profileId,friendorder:friendorder},succeededCallback,failedCallback,userContext); },
ListManager_SortOrder:function(profileId,listId,siteorder,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ListManager_SortOrder',false,{profileId:profileId,listId:listId,siteorder:siteorder},succeededCallback,failedCallback,userContext); },
ImageManager_SortOrder:function(profileId,siteorder,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'ImageManager_SortOrder',false,{profileId:profileId,siteorder:siteorder},succeededCallback,failedCallback,userContext); },
MessageReplyToMessage:function(profileId,generalInfo,urgent,tempMailId,hdnGuid,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'MessageReplyToMessage',false,{profileId:profileId,generalInfo:generalInfo,urgent:urgent,tempMailId:tempMailId,hdnGuid:hdnGuid},succeededCallback,failedCallback,userContext); },
MessageCreate:function(profileId,subject,generalInfo,urgent,newId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'MessageCreate',false,{profileId:profileId,subject:subject,generalInfo:generalInfo,urgent:urgent,newId:newId},succeededCallback,failedCallback,userContext); },
MessageAddRecipient:function(profileId,mailId,mailBodyId,uniqueId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'MessageAddRecipient',false,{profileId:profileId,mailId:mailId,mailBodyId:mailBodyId,uniqueId:uniqueId},succeededCallback,failedCallback,userContext); },
Follow:function(profileIdOfFollower,profileIdBeingFollowed,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Follow',false,{profileIdOfFollower:profileIdOfFollower,profileIdBeingFollowed:profileIdBeingFollowed},succeededCallback,failedCallback,userContext); },
Tracking:function(profileId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Tracking',false,{profileId:profileId},succeededCallback,failedCallback,userContext); },
SiteNotificationsRemove:function(profileId,notiId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SiteNotificationsRemove',false,{profileId:profileId,notiId:notiId},succeededCallback,failedCallback,userContext); },
SiteNotifications:function(profileId,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'SiteNotifications',false,{profileId:profileId},succeededCallback,failedCallback,userContext); },
PortfolioUpdate:function(profileId,generalInfo,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'PortfolioUpdate',false,{profileId:profileId,generalInfo:generalInfo},succeededCallback,failedCallback,userContext); },
RecentlyTagged:function(request,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'RecentlyTagged',false,{request:request},succeededCallback,failedCallback,userContext); },
Viewer_RetreiveFolders:function(customRequest,succeededCallback, failedCallback, userContext) {
return this._invoke(this._get_path(), 'Viewer_RetreiveFolders',false,{customRequest:customRequest},succeededCallback,failedCallback,userContext); }}
PortfolioManager.registerClass('PortfolioManager',Sys.Net.WebServiceProxy);
PortfolioManager._staticInstance = new PortfolioManager();
PortfolioManager.set_path = function(value) { PortfolioManager._staticInstance.set_path(value); }
PortfolioManager.get_path = function() { return PortfolioManager._staticInstance.get_path(); }
PortfolioManager.set_timeout = function(value) { PortfolioManager._staticInstance.set_timeout(value); }
PortfolioManager.get_timeout = function() { return PortfolioManager._staticInstance.get_timeout(); }
PortfolioManager.set_defaultUserContext = function(value) { PortfolioManager._staticInstance.set_defaultUserContext(value); }
PortfolioManager.get_defaultUserContext = function() { return PortfolioManager._staticInstance.get_defaultUserContext(); }
PortfolioManager.set_defaultSucceededCallback = function(value) { PortfolioManager._staticInstance.set_defaultSucceededCallback(value); }
PortfolioManager.get_defaultSucceededCallback = function() { return PortfolioManager._staticInstance.get_defaultSucceededCallback(); }
PortfolioManager.set_defaultFailedCallback = function(value) { PortfolioManager._staticInstance.set_defaultFailedCallback(value); }
PortfolioManager.get_defaultFailedCallback = function() { return PortfolioManager._staticInstance.get_defaultFailedCallback(); }
PortfolioManager.set_enableJsonp = function(value) { PortfolioManager._staticInstance.set_enableJsonp(value); }
PortfolioManager.get_enableJsonp = function() { return PortfolioManager._staticInstance.get_enableJsonp(); }
PortfolioManager.set_jsonpCallbackParameter = function(value) { PortfolioManager._staticInstance.set_jsonpCallbackParameter(value); }
PortfolioManager.get_jsonpCallbackParameter = function() { return PortfolioManager._staticInstance.get_jsonpCallbackParameter(); }
PortfolioManager.set_path("/public/services/PortfolioManager.asmx");
PortfolioManager.Friends_SortOrder= function(profileId,friendorder,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.Friends_SortOrder(profileId,friendorder,onSuccess,onFailed,userContext); }
PortfolioManager.ListManager_SortOrder= function(profileId,listId,siteorder,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.ListManager_SortOrder(profileId,listId,siteorder,onSuccess,onFailed,userContext); }
PortfolioManager.ImageManager_SortOrder= function(profileId,siteorder,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.ImageManager_SortOrder(profileId,siteorder,onSuccess,onFailed,userContext); }
PortfolioManager.MessageReplyToMessage= function(profileId,generalInfo,urgent,tempMailId,hdnGuid,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.MessageReplyToMessage(profileId,generalInfo,urgent,tempMailId,hdnGuid,onSuccess,onFailed,userContext); }
PortfolioManager.MessageCreate= function(profileId,subject,generalInfo,urgent,newId,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.MessageCreate(profileId,subject,generalInfo,urgent,newId,onSuccess,onFailed,userContext); }
PortfolioManager.MessageAddRecipient= function(profileId,mailId,mailBodyId,uniqueId,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.MessageAddRecipient(profileId,mailId,mailBodyId,uniqueId,onSuccess,onFailed,userContext); }
PortfolioManager.Follow= function(profileIdOfFollower,profileIdBeingFollowed,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.Follow(profileIdOfFollower,profileIdBeingFollowed,onSuccess,onFailed,userContext); }
PortfolioManager.Tracking= function(profileId,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.Tracking(profileId,onSuccess,onFailed,userContext); }
PortfolioManager.SiteNotificationsRemove= function(profileId,notiId,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.SiteNotificationsRemove(profileId,notiId,onSuccess,onFailed,userContext); }
PortfolioManager.SiteNotifications= function(profileId,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.SiteNotifications(profileId,onSuccess,onFailed,userContext); }
PortfolioManager.PortfolioUpdate= function(profileId,generalInfo,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.PortfolioUpdate(profileId,generalInfo,onSuccess,onFailed,userContext); }
PortfolioManager.RecentlyTagged= function(request,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.RecentlyTagged(request,onSuccess,onFailed,userContext); }
PortfolioManager.Viewer_RetreiveFolders= function(customRequest,onSuccess,onFailed,userContext) {PortfolioManager._staticInstance.Viewer_RetreiveFolders(customRequest,onSuccess,onFailed,userContext); }
var gtc = Sys.Net.WebServiceProxy._generateTypedConstructor;
Type.registerNamespace('ComponentArt.Web.UI');
if (typeof(ComponentArt.Web.UI.TabStripWebServiceRequest) === 'undefined') {
ComponentArt.Web.UI.TabStripWebServiceRequest=gtc("ComponentArt.Web.UI.TabStripWebServiceRequest");
ComponentArt.Web.UI.TabStripWebServiceRequest.registerClass('ComponentArt.Web.UI.TabStripWebServiceRequest');
}
if (typeof(ComponentArt.Web.UI.TabStripWebServiceResponse) === 'undefined') {
ComponentArt.Web.UI.TabStripWebServiceResponse=gtc("ComponentArt.Web.UI.TabStripWebServiceResponse");
ComponentArt.Web.UI.TabStripWebServiceResponse.registerClass('ComponentArt.Web.UI.TabStripWebServiceResponse');
}

