Skip to main content
17-Peridot
September 21, 2020
Solved

Callback after login page

  • September 21, 2020
  • 1 reply
  • 880 views

Hi, 

I want implement some action after login , such as set certain context value to the global session.  but how to make the service executed automatically after login ? 

 

Regards,

Sean

Best answer by VladimirRosu_116627

Regardless of the method of login (if you rely on the User-set Mashup, Organization Mashup or direct access to a Mashup), I would use a master Mashup (or a contained Mashup in a normal Mashup if you don't want Master Mashup) where I put all my "setup" services like these, chained so I create my own order of execution, which would trigger the Refresh event on the inner mashup - you'd need to wire your internal services to RefreshRequested instead of MashupLoaded

You can really set the Mashup name as a result of your last service so you don't rely on binding on the Refresh requested, but it's just a small detail.

1 reply

19-Tanzanite
September 21, 2020

Regardless of the method of login (if you rely on the User-set Mashup, Organization Mashup or direct access to a Mashup), I would use a master Mashup (or a contained Mashup in a normal Mashup if you don't want Master Mashup) where I put all my "setup" services like these, chained so I create my own order of execution, which would trigger the Refresh event on the inner mashup - you'd need to wire your internal services to RefreshRequested instead of MashupLoaded

You can really set the Mashup name as a result of your last service so you don't rely on binding on the Refresh requested, but it's just a small detail.

seanccc17-PeridotAuthor
17-Peridot
September 22, 2020

@VladimirRosu_116627 ,

 

Thank your for the idea,  that would work for me.   

 

Regards,

Sean