How to open an external application in MVC3 from MVC3?

3

I have an application in MVC3 and I have to call another application hosted on the same server, it is in MVC5.

Should I use an ajax? Should I make a iframe ?

So: it has a menu that is MVC3 and has to be appearing. So I thought it could be Iframe or a div with ajax call from the contents of the other application, what should I use?

    
asked by anonymous 13.08.2015 / 23:36

1 answer

2

The answer to this is not simple. It relies on Single Sign On (SSO) between two different sites, using some SSO library like SSOLib .

Here is a (huge) tutorial how to do . This other link would be the proposal project of the first link . In ASP.NET MVC, there will be some minor adaptations for the application to use a Controller instead of a Page .     

14.08.2015 / 16:10